From 9614a00c79cc862eea1b8630922de1d783e3e8ae Mon Sep 17 00:00:00 2001 From: Rene Schallner Date: Wed, 24 May 2023 01:29:29 +0200 Subject: [PATCH] CI: run all tests via `zig build test` --- .github/workflows/mastercheck.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/mastercheck.yml b/.github/workflows/mastercheck.yml index 845a209..d59cdfc 100644 --- a/.github/workflows/mastercheck.yml +++ b/.github/workflows/mastercheck.yml @@ -26,9 +26,5 @@ jobs: run: zig version - name: Build all examples run: ./build_all.sh - - name: Run authentication tests - run: zig build test-authentication - - name: Run http parameter tests - run: zig build test-httpparams - - name: Run sendfile tests - run: zig build test-sendfile + - name: Run all tests + run: zig build test