Skip to content

Commit b16d989

Browse files
authored
Create main.yml
1 parent 6f98e95 commit b16d989

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Zig Blowfish
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
name: Build and Test
10+
steps:
11+
- uses: actions/checkout@v3
12+
- uses: mlugg/setup-zig@v1
13+
with:
14+
version: master
15+
- run: zig build test
16+
lint:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: mlugg/setup-zig@v1
21+
- run: zig fmt --check .

0 commit comments

Comments
 (0)