add: run tests on linux

This commit is contained in:
Nameless 2020-11-04 17:15:57 -06:00
parent fd08bf1789
commit 69bd1903df
No known key found for this signature in database
GPG Key ID: A477BC03CAFCCAF7

View File

@ -16,7 +16,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
@ -28,6 +28,7 @@ jobs:
- name: Build - name: Build
run: zig build run: zig build
# ZLS Tests currently fail? Once they are passing and kept up to date, this can be enabled # ZLS Tests currently fail on windows? Once they are passing and kept up to date, this can be enabled everywhere
# - name: Run Tests - name: Run Tests
# run: zig build test if: ${{ matrix.os == 'ubuntu-latest' }}
run: zig build test