From b47fb8fa30d3387bf51e15c619f6e08756ba5026 Mon Sep 17 00:00:00 2001 From: Jan Laupetin Date: Tue, 23 Dec 2025 13:16:25 +0100 Subject: [PATCH] chore: run system tests in ci --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 371a72f1..bc115ac5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -78,6 +78,7 @@ jobs: ./ObjLoadingTests ./ObjWritingTests ./ParserTests + ./SystemTests ./ZoneCodeGeneratorLibTests ./ZoneCommonTests @@ -138,6 +139,8 @@ jobs: $combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE) ./ParserTests $combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE) + ./SystemTests + $combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE) ./ZoneCodeGeneratorLibTests $combinedExitCode = [System.Math]::max($combinedExitCode, $LASTEXITCODE) ./ZoneCommonTests