Merge pull request #156 from e0328eric/main #335
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
zig: ["0.14.0", "0.15.0-dev.441+c1649d586"] | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Clone Ziglua | |
uses: actions/checkout@v3 | |
- name: Setup Zig | |
uses: mlugg/setup-zig@v1 | |
with: | |
version: ${{ matrix.zig }} | |
- name: Run tests | |
run: make test |