summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-01-24 01:18:37 +0100
committerGravatar Vincent Rischmann2021-01-24 01:23:09 +0100
commit7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd (patch)
tree8eadeaad1ab8440d104d3d66952d8377bbdaa9d0 /.github/workflows/main.yml
parentbuild: default to in-memory tests (diff)
downloadzig-sqlite-7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd.tar.gz
zig-sqlite-7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd.tar.xz
zig-sqlite-7fc475de3f7f27ba8ee447ae9dc80898bcabf4fd.zip
ci: test both in-memory and filesystem
Diffstat (limited to '')
-rw-r--r--.github/workflows/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index ead0083..25e89bb 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -27,7 +27,7 @@ jobs:
27 run: zig build 27 run: zig build
28 28
29 - name: Run Tests with filesystem 29 - name: Run Tests with filesystem
30 run: zig build test 30 run: zig build test -Din_memory=false
31 31
32 - name: Run Tests in memory 32 - name: Run Tests in memory
33 run: zig build test 33 run: zig build test -Din_memory=true