Skip to content

Commit 3b2faa3

Browse files
committed
.github: adding test action
1 parent dafe586 commit 3b2faa3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: test
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: mlugg/setup-zig@v2
15+
with:
16+
version: master
17+
- run: zig build test -freference-trace
18+
- run: zig build -freference-trace

0 commit comments

Comments
 (0)