Skip to content

Commit

Permalink
ci: add test and fmt PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rockorager committed Jun 5, 2024
1 parent d21940b commit 4d9a0cc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test

on:
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.12.0
- run: zig build test
check-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.12.0
- run: zig fmt --check .

0 comments on commit 4d9a0cc

Please sign in to comment.