Skip to content

Commit

Permalink
add some basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexicon226 committed Jan 12, 2025
1 parent 9e6939c commit 95aa98a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
pull_request:
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: setup-zig
uses: mlugg/setup-zig@v1
with:
version: 0.13.0

- name: build
run: zig build

- name: test
run: zig build test --summary all

0 comments on commit 95aa98a

Please sign in to comment.