Skip to content

Commit

Permalink
Add matrix on python version to testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Oct 13, 2023
1 parent 2a48d14 commit a418b51
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ env:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- 3.8
- 3.9
- '3.10'
# 3.11 needs more work
#- '3.11'
#- '3.12'
steps:
- name: Configure environment
run: |
Expand All @@ -28,10 +37,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 a418b51

Please sign in to comment.