Add Zig setup step to release workflow
Some checks failed
Create Release / release (push) Failing after 4s
Some checks failed
Create Release / release (push) Failing after 4s
This commit is contained in:
parent
f713a10906
commit
740a790436
1 changed files with 7 additions and 0 deletions
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
|
|
@ -15,6 +15,13 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Zig
|
||||
run: |
|
||||
if ! command -v zig &> /dev/null; then
|
||||
brew install zig
|
||||
fi
|
||||
zig version
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
cd scripts/manwhere && zig build test
|
||||
|
|
|
|||
Loading…
Reference in a new issue