Skip to content

Commit

Permalink
chore(test.yml): Update Python versions for Github Actions (#68)
Browse files Browse the repository at this point in the history
chore(test.yml): update Python versions in the matrix to include Python
3.12 for testing
  • Loading branch information
marcuxyz authored Jul 21, 2024
2 parents 9bbd5a6 + 72770d9 commit c0f8f02
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,21 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12.4'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.4.2
poetry-version: 1.8.3

- name: Disables creation of virtualenvs
run: poetry config virtualenvs.create false
Expand Down

0 comments on commit c0f8f02

Please sign in to comment.