Skip to content

Commit c0f8f02

Browse files
authored
chore(test.yml): Update Python versions for Github Actions (#68)
chore(test.yml): update Python versions in the matrix to include Python 3.12 for testing
2 parents 9bbd5a6 + 72770d9 commit c0f8f02

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,21 @@ jobs:
1313
strategy:
1414
matrix:
1515
python-version:
16-
- '3.8'
17-
- '3.9'
1816
- '3.10'
1917
- '3.11'
18+
- '3.12.4'
2019

2120
steps:
22-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2322
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v1
23+
uses: actions/setup-python@v5
2524
with:
2625
python-version: ${{ matrix.python-version }}
2726

2827
- name: Install Poetry
2928
uses: Gr1N/setup-poetry@v8
3029
with:
31-
poetry-version: 1.4.2
30+
poetry-version: 1.8.3
3231

3332
- name: Disables creation of virtualenvs
3433
run: poetry config virtualenvs.create false

0 commit comments

Comments
 (0)