Try running Sytest with both SQLites

This commit is contained in:
Neil Alexander 2022-11-02 12:07:54 +00:00
parent 61a7ad114c
commit 5cfb3b89b3
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -269,11 +269,18 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
include: include:
- label: SQLite - label: SQLite (native)
- label: SQLite, full HTTP APIs - label: SQLite (Cgo)
cgo: 1
- label: SQLite (native), full HTTP APIs
api: full-http api: full-http
- label: SQLite (Cgo), full HTTP APIs
api: full-http
cgo: 1
- label: PostgreSQL - label: PostgreSQL
postgres: postgres postgres: postgres
@ -288,6 +295,7 @@ jobs:
POSTGRES: ${{ matrix.postgres && 1}} POSTGRES: ${{ matrix.postgres && 1}}
API: ${{ matrix.api && 1 }} API: ${{ matrix.api && 1 }}
SYTEST_BRANCH: ${{ github.head_ref }} SYTEST_BRANCH: ${{ github.head_ref }}
CGO_ENABLED: ${{ matrix.cgo && 1 }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Run Sytest - name: Run Sytest