Skip to content

Commit

Permalink
Exclude python 3.6 for macos. Actually use the python-version. Add la…
Browse files Browse the repository at this point in the history
…test python-versions
  • Loading branch information
TheCleric committed Jun 20, 2024
1 parent 74fc92f commit b46d510
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,26 @@ jobs:
- 3.7
- 3.8
- 3.9
- 3.10
- 3.11
- 3.12
platform:
- ubuntu-20.04
- macos-latest
- windows-latest
exclude:
# 3.6 doesn't exist as a runner on arm64 macs
- python-version: 3.6
platform: macos-latest

runs-on: "${{ matrix.platform }}"
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.6
uses: actions/setup-python@v5
with:
python-version: "3.6"
python-version: ${{matrix.python-version}}

- name: Setup poetry
uses: abatilo/actions-poetry@v2
Expand Down

0 comments on commit b46d510

Please sign in to comment.