Skip to content

Commit

Permalink
Add matrix on python version to testing workflow
Browse files Browse the repository at this point in the history
We need to stick with 3.10 as minimal but eventually would add 3.11 into
testing.
  • Loading branch information
yarikoptic committed Oct 13, 2023
1 parent 2a48d14 commit a26eb9e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ env:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- '3.10'
# 3.11 needs more work
#- '3.11'
#- '3.12'
steps:
- name: Configure environment
run: |
Expand All @@ -28,10 +35,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup Python 3.10
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: ${{ matrix.python }}

- name: Create venv and poetry build
run: |
Expand Down

0 comments on commit a26eb9e

Please sign in to comment.