Skip to content

Commit 022720f

Browse files
committed
install ninja for success as well
1 parent 57b02dc commit 022720f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/run-dev-tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
python-version: 3.x
4848
- name: Install workflow deps
4949
run: python3 -m pip install meson
50+
- name: Install ninja (Linux)
51+
if: runner.os == 'Linux'
52+
run: sudo apt-get install ninja-build
53+
- name: Install ninja (Windows)
54+
if: runner.os == 'Windows'
55+
run: choco install ninja
5056
- run: just test
5157
# continue-on-error: true
5258
- name: save build as artifact

0 commit comments

Comments
 (0)