Skip to content

Commit

Permalink
updated GH zig-11 workflow to run tests step by step
Browse files Browse the repository at this point in the history
  • Loading branch information
renerocksai committed Dec 30, 2023
1 parent 012452e commit 87aca69
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build-zig-11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,16 @@ jobs:
run: zig version
- name: Build all examples
run: ./build_all.sh
- name: Run all tests
run: zig build test
# - name: Run all tests
# run: zig build test
# Run tests separately so we can see more clearly which one fails
- name: Run mustache tests
run: zig build test-mustache
- name: Run httpparams tests
run: zig build test-httpparams
- name: Run sendfile tests
run: zig build test-sendfile
- name: Run authentication tests
run: zig build test-authentication
- name: Report end of tests
run: echo "tests finished"

0 comments on commit 87aca69

Please sign in to comment.