Skip to content

Commit

Permalink
[CI] Replace macos-12 GitHub runner image (#1339)
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGensollen authored Oct 17, 2024
1 parent bdaadcb commit eb017f2
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ permissions:
contents: read

jobs:
test-intel:
name: Run unit tests on Intel ${{ matrix.os }} with Python ${{ matrix.python-version }}
test:
name: Run unit tests on ${{ matrix.os }} with Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-12]
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
Expand All @@ -27,20 +27,3 @@ jobs:
cache: poetry
- name: Run unit tests
run: make test

test-arm:
name: Run unit tests on ARM MacOS with Python ${{ matrix.python-version }}
runs-on: macos-14
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Run unit tests
run: make test

0 comments on commit eb017f2

Please sign in to comment.