Skip to content

Commit

Permalink
ci: add test
Browse files Browse the repository at this point in the history
  • Loading branch information
waynezhang committed Feb 9, 2025
1 parent c86af23 commit 6aed95d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test
on:
- push
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Zig
uses: mlugg/setup-zig@v1

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

0 comments on commit 6aed95d

Please sign in to comment.