summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2021-08-18 23:30:53 +0200
committerGravatar GitHub2021-08-18 23:30:53 +0200
commitf5dfcfe2f7a0f40ab5c9b008862e3b6ef20a2f13 (patch)
tree96b71748d26e65155c8021c9072ca23cc26cb4bc /.github/workflows
parentMerge pull request #36 from nektro/master (diff)
parentci: stop testing both memory and filesystem (diff)
downloadzig-sqlite-f5dfcfe2f7a0f40ab5c9b008862e3b6ef20a2f13.tar.gz
zig-sqlite-f5dfcfe2f7a0f40ab5c9b008862e3b6ef20a2f13.tar.xz
zig-sqlite-f5dfcfe2f7a0f40ab5c9b008862e3b6ef20a2f13.zip
Merge pull request #38 from vrischmann/ci-macos
enable CI for macOS
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml19
1 files changed, 1 insertions, 18 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 587c172..e1593b4 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] 32 os: [ubuntu-latest, 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
@@ -41,20 +41,3 @@ jobs:
41 41
42 - name: Run Tests in memory 42 - name: Run Tests in memory
43 run: zig build test -Din_memory=true 43 run: zig build test -Din_memory=true
44
45 test-with-filesystem:
46 strategy:
47 fail-fast: false
48 matrix:
49 os: [ubuntu-latest, windows-latest]
50 runs-on: ${{ matrix.os }}
51 steps:
52 - uses: actions/checkout@v2
53 with:
54 submodules: true
55 - uses: goto-bus-stop/setup-zig@v1
56 with:
57 version: master
58
59 - name: Run Tests with filesystem
60 run: zig build test -Din_memory=false