Skip to content

Commit 9ea5dab

Browse files
committed
Make sure zig is installed
1 parent 05ce0a2 commit 9ea5dab

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
3434
with:
3535
python-version: '3.13'
3636

37+
- name: Install Zig (Windows)
38+
if: runner.os == 'Windows'
39+
run: choco install zig -y
40+
3741
- name: Set up Ruby
3842
if: ${{ matrix.platform != 'windows-latest' }}
3943
uses: ruby/setup-ruby@4c24fa5ec04b2e79eb40571b1cee2a0d2b705771 #v1.278.0

.github/workflows/run.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ jobs:
3535
echo "C:\Program Files (x86)\Subversion\bin" >> $env:GITHUB_PATH
3636
svn --version # Verify installation
3737
38+
- name: Install Zig (Windows)
39+
run: choco install zig -y
40+
3841
- name: Install dfetch
3942
run: pip install .
4043

@@ -102,6 +105,10 @@ jobs:
102105
echo "C:\Program Files (x86)\Subversion\bin" >> $env:GITHUB_PATH
103106
svn --version # Verify installation
104107
108+
- name: Install Zig (Windows)
109+
if: runner.os == 'Windows'
110+
run: choco install zig -y
111+
105112
- name: Install dfetch
106113
run: pip install .
107114

0 commit comments

Comments
 (0)