From aee9770f8b0e606680959e7698235215c323659a Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Thu, 9 Nov 2023 23:22:24 -0600 Subject: [PATCH] Exclude other OS different than Linux in CI --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4e4de4..02fdcba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,8 +24,6 @@ jobs: matrix: os: [ ubuntu-latest, - windows-latest, - macos-latest ] runs-on: ${{ matrix.os }} timeout-minutes: 15 @@ -39,4 +37,7 @@ jobs: - name: Zig environment variables run: zig env - name: Test - run: zig build test -Dall --summary all + run: | + zig build test -Dall --summary all + zig build run -- test/first/main.nat + nat/first