File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 17
17
runs-on : ${{ matrix.os }}
18
18
strategy :
19
19
matrix :
20
- # os: [ubuntu-20.04, windows-latest, macos-latest]
21
- os : [windows-latest]
20
+ os : [ubuntu-20.04, windows-latest, macos-latest]
22
21
23
22
steps :
24
23
- uses : actions/checkout@v4
@@ -58,12 +57,18 @@ jobs:
58
57
shell : pwsh
59
58
run : |
60
59
make compile-windows
60
+ Write-Host "Running json_equal tests..."
61
61
Get-Content test/json_equal.sql | sqlite3.exe | Out-File -FilePath test.log
62
62
if (Select-String -Path test.log -Pattern '^[0-9_]+.[^1]$') { throw 'Test failed' }
63
+ Write-Host "json_equal tests completed successfully."
64
+ Write-Host "Running regexp tests..."
63
65
Get-Content test/regexp.sql | sqlite3.exe | Out-File -FilePath test.log
64
66
if (Select-String -Path test.log -Pattern '^[0-9_]+.[^1]$') { throw 'Test failed' }
67
+ Write-Host "regexp tests completed successfully."
68
+ Write-Host "Running split_part tests..."
65
69
Get-Content test/split_part.sql | sqlite3.exe | Out-File -FilePath test.log
66
70
if (Select-String -Path test.log -Pattern '^[0-9_]+.[^1]$') { throw 'Test failed' }
71
+ Write-Host "split_part tests completed successfully."
67
72
68
73
- name : Compile and test on macOS
69
74
if : matrix.os == 'macos-latest'
You can’t perform that action at this time.
0 commit comments