Add Zig setup step to release workflow
Some checks failed
Create Release / release (push) Failing after 4s

This commit is contained in:
Jeremie Fraeys 2026-02-09 14:44:51 -05:00
parent f713a10906
commit 740a790436
No known key found for this signature in database

View file

@ -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