Skip to content

Commit ecd43ec

Browse files
committed
chore: implement simple workflow to build project
1 parent 9fea2c9 commit ecd43ec

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/zig.yml

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

0 commit comments

Comments
 (0)