From 69bd1903df70e6eb15ad6c6f70d79d0397904f0d Mon Sep 17 00:00:00 2001 From: Nameless Date: Wed, 4 Nov 2020 17:15:57 -0600 Subject: [PATCH] add: run tests on linux --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index acd1d9e..1ea6ba9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - runs-on: ${{matrix.os}} + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 with: @@ -28,6 +28,7 @@ jobs: - name: Build run: zig build - # ZLS Tests currently fail? Once they are passing and kept up to date, this can be enabled - # - name: Run Tests - # run: zig build test + # ZLS Tests currently fail on windows? Once they are passing and kept up to date, this can be enabled everywhere + - name: Run Tests + if: ${{ matrix.os == 'ubuntu-latest' }} + run: zig build test