Skip to content

Commit feb0c84

Browse files
committed
workflows: setup-just does not work on windows 11 arm
1 parent 853c652 commit feb0c84

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,6 @@ jobs:
138138

139139
steps:
140140

141-
- uses: extractions/setup-just@v3
142-
143141
- name: Set up Python
144142
uses: actions/setup-python@v5
145143
with:
@@ -174,7 +172,7 @@ jobs:
174172
WHEEL: ${{ matrix.wheel }}
175173

176174
- name: Run Test Suite
177-
run: just test
175+
run: python3 -m pytest tests/
178176

179177

180178
publish:

.github/workflows/test_release.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ jobs:
2828

2929
steps:
3030

31-
- uses: extractions/setup-just@v3
32-
3331
- name: Set up Python
3432
uses: actions/setup-python@v5
3533
with:
@@ -54,4 +52,4 @@ jobs:
5452
run: python3 -m pip install -U -r req/converters.txt -r req/test.txt
5553

5654
- name: Run tests
57-
run: just test
55+
run: python3 -m pytest tests/

.github/workflows/test_setup.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525

2626
steps:
2727

28-
- uses: extractions/setup-just@v3
29-
3028
# AOTW, the slsa-verifier GH action does not support anything but Ubuntu x86_64.
3129
- name: slsa-verifier
3230
if: ${{ startsWith(matrix.os, 'ubuntu') && !endsWith(matrix.os, '-arm') }}
@@ -61,7 +59,7 @@ jobs:
6159
run: python3 -m pip install -v --no-build-isolation -e .
6260

6361
- name: Build docs
64-
run: just docs-build
62+
run: python3 -m sphinx -b html docs/source docs/build/html
6563

6664
- name: Run test suite
67-
run: just test
65+
run: python3 -m pytest tests/

0 commit comments

Comments
 (0)