summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
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