Skip to content

Commit

Permalink
[CI] Fix MacOS builds and extend Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mickmis committed Sep 20, 2024
1 parent b83ddde commit 4006917
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,23 @@ on:
jobs:
install-test:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
exclude: # MacOS images starting v14 do not support Python 3.8: https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md#python
- python-version: "3.8"
os: macos-latest
include:
- python-version: "3.8"
os: macos-13
max-parallel: 3
name: Python ${{ matrix.python-version }}
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: "x64"
Expand All @@ -34,16 +41,17 @@ jobs:
run: python -m pytest --cov
editable-install-test:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8"]
python-version: ["3.9"]
max-parallel: 3
name: Python ${{ matrix.python-version }}
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup-python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: "x64"
Expand Down

0 comments on commit 4006917

Please sign in to comment.