Skip to content

Commit 6b26547

Browse files
authored
Update main.yml
vbabiy#162
1 parent f0d312a commit 6b26547

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,22 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11","3.12"]
16+
python-version:
17+
- "3.9"
18+
- "3.10"
19+
- "3.11"
20+
- "3.12"
21+
- "3.13"
1722

1823
steps:
19-
- uses: actions/checkout@v3.5.3
24+
- uses: actions/checkout@v4.2.2
2025
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v4.7.0
26+
uses: actions/setup-python@v5.4.0
2227
with:
2328
python-version: ${{ matrix.python-version }}
2429
- name: Install dependencies
2530
run: |
2631
python -m pip install --upgrade pip setuptools
27-
pip install tox tox-gh-actions
28-
- name: Test with tox
29-
run: tox
32+
pip install tox
33+
- name: Run tox targets for ${{ matrix.python-version }}
34+
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)

0 commit comments

Comments
 (0)