Skip to content

Commit

Permalink
add ci so we confirm it at least builds
Browse files Browse the repository at this point in the history
  • Loading branch information
lun-4 committed May 1, 2024
1 parent ab7f876 commit fdec5dd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: build
on: [push]
jobs:
build:
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

0 comments on commit fdec5dd

Please sign in to comment.