You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
422 B

4 years ago
name: Workflow
on: [push]
4 years ago
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v1
4 years ago
with:
version: master
4 years ago
- run: zig fmt src
- run: zig fmt examples
- run: zig fmt tests
- run: zig fmt build.zig
4 years ago
- run: zig build test