Skip to content

Commit

Permalink
ci: added Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ntamas committed Oct 8, 2023
1 parent 2f1043d commit cba1646
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3

Expand All @@ -18,11 +18,12 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
uses: abatilo/actions-poetry@v2

- name: Setup a local virtual environment
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- name: Load cached virtualenv
id: cached-poetry-dependencies
Expand Down

0 comments on commit cba1646

Please sign in to comment.