diff options
| author | 2022-08-02 23:13:40 +0200 | |
|---|---|---|
| committer | 2022-08-02 23:36:50 +0200 | |
| commit | d6f985286d19e99583eacb3192521853d0d06ea3 (patch) | |
| tree | daa60d076595df7d737d6e343803ceb69d2aea99 | |
| parent | remove obsolete todo (diff) | |
| download | zig-sqlite-d6f985286d19e99583eacb3192521853d0d06ea3.tar.gz zig-sqlite-d6f985286d19e99583eacb3192521853d0d06ea3.tar.xz zig-sqlite-d6f985286d19e99583eacb3192521853d0d06ea3.zip | |
ci: test on all Ubuntu's variants
Ubuntu 18.04 actually uses SQLite 3.22.x and as seen in 530feae7884ae5942c50cba30a307ddbcd767402
the SQLITE_DIRECTONLY flag doesn't exist until SQLite 3.30.0.
If we had tested with Ubuntu 18.04 we would have caught this earlier.
| -rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e1593b4..681a926 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml | |||
| @@ -29,7 +29,7 @@ jobs: | |||
| 29 | strategy: | 29 | strategy: |
| 30 | fail-fast: false | 30 | fail-fast: false |
| 31 | matrix: | 31 | matrix: |
| 32 | os: [ubuntu-latest, windows-latest, macos-latest] | 32 | os: [ubuntu-18.04, ubuntu-latest, ubuntu-22.04, windows-latest, macos-latest] |
| 33 | runs-on: ${{ matrix.os }} | 33 | runs-on: ${{ matrix.os }} |
| 34 | steps: | 34 | steps: |
| 35 | - uses: actions/checkout@v2 | 35 | - uses: actions/checkout@v2 |