Skip to content

Commit

Permalink
Merge pull request #366 from mdekstrand/tweak/apple-ci
Browse files Browse the repository at this point in the history
Expand build matrix for Apple Silicon & MacOS vanilla Python builds
  • Loading branch information
mdekstrand authored Mar 4, 2024
2 parents 9ee1b55 + 81d90fd commit d818823
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
conda:
name: Conda Python ${{matrix.python}} on ${{matrix.platform}}
runs-on: ${{matrix.platform}}-latest
runs-on: ${{matrix.platform}}
timeout-minutes: 30
strategy:
fail-fast: false
Expand All @@ -25,9 +25,10 @@ jobs:
- "3.10"
- "3.11"
platform:
- macos
- windows
- ubuntu
- macos-latest
- macos-14
- windows-latest
- ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -138,7 +139,7 @@ jobs:

vanilla:
name: Vanilla Python ${{matrix.python}} on ${{matrix.platform}}
runs-on: ${{matrix.platform}}-latest
runs-on: ${{matrix.platform}}
timeout-minutes: 30
strategy:
fail-fast: false
Expand All @@ -147,8 +148,9 @@ jobs:
- "3.10"
- "3.11"
platform:
- windows
- ubuntu
- windows-latest
- ubuntu-latest
- macos-14
steps:
- name: Check out source
uses: actions/checkout@v4
Expand All @@ -163,7 +165,8 @@ jobs:

- name: Set up dependencies
run: |
pip install -e '.[test]'
python -m pip install -U 'uv>=0.1.13'
pip install --prefer-binary -e '.[test]'
- name: Inspect environment
run: |
Expand Down

0 comments on commit d818823

Please sign in to comment.