Skip to content

Commit c950504

Browse files
authored
Fix workflows running on amd64 and arm64 (#29)
1 parent 8474c1e commit c950504

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/check_requirements.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ permissions:
1818
contents: read
1919

2020
jobs:
21-
tests:
22-
name: Run requirements tests on multiple architectures
23-
runs-on: [ubuntu-latest, macos-latest]
21+
test:
22+
runs-on: ${{ matrix.os }}
23+
strategy:
24+
matrix:
25+
os: [ubuntu-latest, macos-latest]
2426

2527
steps:
2628
- name: Checkout the repository
@@ -34,7 +36,7 @@ jobs:
3436
- name: Install dependencies
3537
run: |
3638
python -m pip install --upgrade pip
37-
pip install pip-tools pytest -y
39+
pip install pip-tools pytest
3840
3941
- name: Generate requirements-generated.txt
4042
run: |

0 commit comments

Comments
 (0)