Skip to content

Commit

Permalink
workflows: test on 0.12.0 and 0.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jun 10, 2024
1 parent 605f22c commit b7667f0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,32 @@ on:
jobs:
test-linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
zig: ["0.12.0", "0.13.0"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.12.0
version: ${{ matrix.zig }}
- run: zig build
- run: zig build test
test-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
zig: ["0.12.0", "0.13.0"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: goto-bus-stop/setup-zig@2a9625d550eefc3a9b1a43d342ad655f563f8241
with:
version: 0.12.0
version: ${{ matrix.zig }}
- run: brew install pcre
- run: zig build
- run: zig build test
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/zig-*
/zig-out
/.zig-cache
koino.code-workspace
# https://github.com/kivikakk/htmlentities.zig/issues/10
src/entities.zig

0 comments on commit b7667f0

Please sign in to comment.