Skip to content

Commit

Permalink
Pin MacOS Version in GH Actions (#535)
Browse files Browse the repository at this point in the history
* change python version and update pip

* pin macos version to `macos-13` for minimum tests
  • Loading branch information
sarahmish authored Apr 30, 2024
1 parent 7b8e88f commit 71b856b
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-20.04]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-20.04, macos-latest]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -69,7 +69,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-20.04, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -87,15 +87,17 @@ jobs:
strategy:
matrix:
python-version: ['3.8']
os: [ubuntu-20.04, macos-latest]
os: [ubuntu-latest, macos-13]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: pip install invoke .[test]
run: |
python -m pip install --upgrade pip
python -m pip install invoke .[test]
- name: invoke minimum
run: invoke minimum

Expand All @@ -105,7 +107,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-20.04, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest
python-version: '3.7'
Expand Down

0 comments on commit 71b856b

Please sign in to comment.