Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflows: test on zig 0.12.0, 0.13.0. #51

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading