ci: add db matrix to ci

This commit is contained in:
thesimplekid
2024-09-21 10:57:19 +02:00
parent 4a0637a6a5
commit 3413c24936
4 changed files with 11 additions and 8 deletions

View File

@@ -83,6 +83,12 @@ jobs:
[
-p cdk-integration-tests,
]
database:
[
REDB,
SQLITE,
MEMORY
]
steps:
- name: checkout
uses: actions/checkout@v4
@@ -95,7 +101,7 @@ jobs:
- name: Clippy
run: nix develop -i -L .#stable --command cargo clippy ${{ matrix.build-args }} -- -D warnings
- name: Test
run: nix develop -i -L .#stable --command just itest
run: nix develop -i -L .#stable --command just itest ${{ matrix.database }}
msrv-build:
name: "MSRV build"