Skip to content

Commit

Permalink
run tests on ubuntu-24.04 and ubuntu-24.04-arm CI runners
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob-keller committed Jan 22, 2025
1 parent af434cd commit 834e8a5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
path: dist/

test:
name: Test Python ${{ matrix.python-version }}
runs-on: ubuntu-24.04
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
Expand All @@ -51,6 +51,9 @@ jobs:
- 3.11
- 3.12
- 3.13
os:
- ubuntu-24.04
- ubuntu-24.04-arm
fail-fast: false
env:
UV_FROZEN: 1
Expand All @@ -74,7 +77,7 @@ jobs:
run: |
uv run make mototest
- name: Upload coverage to Codecov
if: matrix.python-version == '3.11'
if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-24.04'
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
Expand Down

0 comments on commit 834e8a5

Please sign in to comment.