We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ubuntu-24.04
ubuntu-24.04-arm
1 parent f13f103 commit fb76993Copy full SHA for fb76993
.github/workflows/ci-cd.yml
@@ -39,8 +39,8 @@ jobs:
39
path: dist/
40
41
test:
42
- name: Test Python ${{ matrix.python-version }}
43
- runs-on: ubuntu-24.04
+ name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
44
strategy:
45
matrix:
46
python-version:
@@ -51,6 +51,9 @@ jobs:
51
- 3.11
52
- 3.12
53
- 3.13
54
+ os:
55
+ - ubuntu-24.04
56
+ - ubuntu-24.04-arm
57
fail-fast: false
58
env:
59
UV_FROZEN: 1
@@ -74,7 +77,7 @@ jobs:
74
77
run: |
75
78
uv run make mototest
76
79
- name: Upload coverage to Codecov
- if: matrix.python-version == '3.11'
80
+ if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-24.04'
81
uses: codecov/[email protected]
82
with:
83
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
0 commit comments