Skip to content

Commit d01483c

Browse files
committed
Run integration tests on ARM
1 parent c83963c commit d01483c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ on:
99
jobs:
1010
test:
1111
name: Integration tests
12-
runs-on: ubuntu-latest
13-
12+
strategy:
13+
matrix:
14+
runner: [ubuntu-latest, ubuntu-24.04-arm]
15+
runs-on: ${{ matrix.runner }}
1416
steps:
15-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1618

1719
- name: Set up Python
18-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
1921
with:
2022
python-version: "3.10"
2123

0 commit comments

Comments
 (0)