Skip to content

Commit

Permalink
Do not run on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
kytta committed Sep 7, 2024
1 parent 58da7d1 commit 740718a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,14 @@ jobs:
python-versions: ${{ steps.baipp.outputs.supported_python_classifiers_json_array }}

test:
name: Test on Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
name: Test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
needs: build

strategy:
fail-fast: false
matrix:
python-version: ${{ fromJson(needs.build.outputs.python-versions) }}
os:
- ubuntu-latest
- macos-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -63,7 +60,6 @@ jobs:

- name: Upload coverage data
uses: actions/upload-artifact@v4
if: startsWith(matrix.os, 'ubuntu-')
with:
name: coverage-data-${{ matrix.python-version }}
path: .coverage.*
Expand Down

0 comments on commit 740718a

Please sign in to comment.