From 7da60271f4ce332a9f79fb589034800fb9790842 Mon Sep 17 00:00:00 2001 From: Rene Schallner Date: Sat, 13 May 2023 22:34:42 +0200 Subject: [PATCH] CI-add sendfile tests, all examples instead of 1 --- .github/workflows/mastercheck.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mastercheck.yml b/.github/workflows/mastercheck.yml index f4fa92b..e8bb825 100644 --- a/.github/workflows/mastercheck.yml +++ b/.github/workflows/mastercheck.yml @@ -36,9 +36,11 @@ jobs: mv build.zig.zon build.zig.zon.moved && mv build.zig.zon.localhost build.zig.zon && python -m http.server & sleep 3 zig build - - name: Build simple endpoint example - run: zig build endpoint --verbose - - name: Build authentication tests + - name: Build all examples + run: ./build_all.sh + - name: Run authentication tests run: zig build test-authentication - - name: Build http parameter tests + - name: Run http parameter tests run: zig build test-httpparams + - name: Run sendfile tests + run: zig build test-sendfile