Skip to content

feat!: All the breaking changes that a finished game needs to grow #13

feat!: All the breaking changes that a finished game needs to grow

feat!: All the breaking changes that a finished game needs to grow #13

Workflow file for this run

name: Zig Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
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@v2
- run: zig build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v2
- run: zig fmt --check src/*.zig