From a198e2c7dcef170e5a26e9afe942c19c004e54b8 Mon Sep 17 00:00:00 2001 From: bfeld Date: Thu, 28 Dec 2023 13:18:38 +0100 Subject: [PATCH] Reintroduce unit testing to CI pipeline --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d376473..578ebc5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,3 +19,7 @@ jobs: run: | zig build --summary all zig build -Doptimize=ReleaseSafe --summary all + - name: Test + run: | + zig build test --summary all + zig build test -Doptimize=ReleaseSafe --summary all