Run zig fmt in CI builds
This commit is contained in:
parent
f3bfc59b7d
commit
b02110af18
1 changed files with 6 additions and 2 deletions
8
.github/workflows/ci_build.yml
vendored
8
.github/workflows/ci_build.yml
vendored
|
@ -30,10 +30,14 @@ jobs:
|
|||
- name: Checkout Code
|
||||
uses: actions/checkout@master
|
||||
|
||||
- name: Build
|
||||
- name: build
|
||||
run: |
|
||||
zig build
|
||||
|
||||
- name: Test
|
||||
- name: test
|
||||
run: |
|
||||
zig build test
|
||||
|
||||
- name: zig fmt
|
||||
run: |
|
||||
zig fmt --check src/**/*.zig
|
||||
|
|
Loading…
Reference in a new issue