Skip to content

Commit 8849614

Browse files
committed
run tests on ubuntu-24.04 and ubuntu-24.04-arm CI runners
1 parent 5ff7a4e commit 8849614

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci-cd.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
path: dist/
4040

4141
test:
42-
name: Test Python ${{ matrix.python-version }}
43-
runs-on: ubuntu-24.04
42+
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
43+
runs-on: ${{ matrix.os }}
4444
strategy:
4545
matrix:
4646
python-version:
@@ -51,6 +51,9 @@ jobs:
5151
- 3.11
5252
- 3.12
5353
- 3.13
54+
os:
55+
- ubuntu-24.04
56+
- ubuntu-24.04-arm
5457
fail-fast: false
5558
env:
5659
UV_FROZEN: 1
@@ -74,7 +77,7 @@ jobs:
7477
run: |
7578
uv run make mototest
7679
- name: Upload coverage to Codecov
77-
if: matrix.python-version == '3.11'
80+
if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-24.04'
7881
uses: codecov/[email protected]
7982
with:
8083
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos

0 commit comments

Comments
 (0)