From 87aca69ff86d64a1ca94e74ff5930fe6aefc5904 Mon Sep 17 00:00:00 2001 From: Rene Schallner Date: Sun, 31 Dec 2023 00:39:43 +0100 Subject: [PATCH] updated GH zig-11 workflow to run tests step by step --- .github/workflows/build-zig-11.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-zig-11.yml b/.github/workflows/build-zig-11.yml index e5754b4..d86fbe6 100644 --- a/.github/workflows/build-zig-11.yml +++ b/.github/workflows/build-zig-11.yml @@ -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"