mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 15:14:08 +00:00
updated GH zig-11 workflow to run tests step by step
This commit is contained in:
parent
012452e1e1
commit
87aca69ff8
1 changed files with 13 additions and 2 deletions
15
.github/workflows/build-zig-11.yml
vendored
15
.github/workflows/build-zig-11.yml
vendored
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue