Skip to content

Commit be01c6c

Browse files
committed
.github: adding test action
1 parent 4d286ef commit be01c6c

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.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: 0.15.1
17+
- run: zig build test -freference-trace
18+
- run: zig build -freference-trace

0 commit comments

Comments
 (0)