Skip to content

Commit

Permalink
Run github jobs also on windows machines
Browse files Browse the repository at this point in the history
  • Loading branch information
sam701 committed Dec 20, 2023
1 parent e3f673e commit 0726e51
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ on:

jobs:
validate_and_test_with_zig_master:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
Expand All @@ -19,7 +24,7 @@ jobs:
- run: zig build
- run: zig build test
validate_and_test_with_zig_011:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: goto-bus-stop/setup-zig@v2
Expand Down

0 comments on commit 0726e51

Please sign in to comment.