Skip to content

Commit 2978cad

Browse files
committed
tox: Add python 3.10 3.13
Signed-off-by: Arisu Tachibana <arisu.tachibana@miraclelinux.com>
1 parent d364d2b commit 2978cad

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/poetry.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ on: [push, pull_request]
55
jobs:
66
ci:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ["3.10", "3.11", "3.12", "3.13"]
811
steps:
912
- uses: actions/checkout@v4
10-
- name: Install Python
13+
- name: Install Python ${{ matrix.python-version }}
1114
uses: actions/setup-python@v5
1215
with:
13-
python-version: '3.11'
16+
python-version: ${{ matrix.python-version }}
1417
- name: Install poetry
1518
uses: abatilo/actions-poetry@v3
1619
- name: Install shellcheck

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
env_list = py311,py312
2+
env_list = py310,py311,py312,py313
33

44
[testenv]
55
allowlist_externals = poetry

0 commit comments

Comments
 (0)