Skip to content

Commit bb6e7e5

Browse files
Add workflow
1 parent 834b7eb commit bb6e7e5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/unit-tests.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
with:
18+
version: master
19+
- run: zig build test --summary all

0 commit comments

Comments
 (0)