Skip to content

Commit 0071f2b

Browse files
Add workflow
1 parent 834b7eb commit 0071f2b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/unit-tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Unit Tests
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
10+
jobs:
11+
unit-test:
12+
runs-on: ubuntu-latest
13+
name: Build and Test
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: mlugg/setup-zig@v1
17+
- run: zig build test --summary all

0 commit comments

Comments
 (0)