Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,16 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, macos-14, windows-latest] # at the moment macos-14 is exclusive M1 chip
# macos-14 not supporting 3.8 and 3.9
exclude:
- python-version: 3.8
os: macos-14
- python-version: 3.9
os: macos-14
os: [ubuntu-latest, macos-latest, macos-13, windows-latest] # at the moment macos-latest=macos-14 is exclusive M1 chip, macos-13 is intel
fail-fast: false
name: Test wheel on ${{ matrix.os }} and Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
# for macos-14 get macos-latest artifacts
name: wheels-${{ matrix.os == 'macos-14' && 'macos-latest' || matrix.os }}
# for macos-13 get macos-latest artifacts
name: wheels-${{ matrix.os == 'macos-13' && 'macos-latest' || matrix.os }}
path: dist
- name: Show dist files
run: ls -lah ./dist
Expand Down