1
0
Fork 0
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:
Rene Schallner 2023-12-31 00:39:43 +01:00
parent 012452e1e1
commit 87aca69ff8

View file

@ -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"