Skip to content

Commit

Permalink
fix yaml, extend changes to examples as well
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Mar 17, 2024
1 parent e23d66d commit edb675d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/tests+pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- if: matrix.platform != 'macos-14'
- if: matrix.platform == 'macos-14'
run: sudo ln -s `which python3` /usr/local/bin/python

- run: |
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
needs: [pylint, precommit]
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest, macos-12, macos-14, windows-latest]
python-version: ["3.8", "3.11"]
fail-fast: false
runs-on: ${{ matrix.platform }}
Expand All @@ -170,9 +170,15 @@ jobs:
with:
submodules: recursive
fetch-depth: 0
- uses: actions/setup-python@v1

- if: matrix.platform != 'macos-14'
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- if: matrix.platform == 'macos-14'
run: sudo ln -s `which python3` /usr/local/bin/python

- run: pip install -e .[tests] ./examples
- run: pip install -r tests/devops_tests/requirements.txt
- if: matrix.platform == 'ubuntu-latest'
Expand Down

0 comments on commit edb675d

Please sign in to comment.