Skip to content

Commit e647a58

Browse files
committed
i wonder if this works...
Signed-off-by: Max Chesterfield <max.chesterfield@zepben.com>
1 parent 7737cbf commit e647a58

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/python-lib-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,12 @@ jobs:
88
run:
99
uses: zepben/.github/.github/workflows/python-build.yml@main
1010
secrets: inherit
11+
strategy:
12+
fail-fast: true
13+
matrix:
14+
python-version: [ 3.10", "3.11", "3.12", "3.13" ]
15+
container: python:${{ matrix.python-version }}
16+
env:
17+
TOXENV=${{ matrix.python-version }}
18+
1119

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tox]
22
envlist =
3-
py{310, 311, 312, 313}
3+
py{3.10, 3.11, 3.12, 3.13}
44
build
55

66
[testenv]
77
passenv = GITHUB_*
88
pip_pre = true
99
extras = test
10-
depends = build: py{310, 311, 312, 313}
10+
depends = build: py{3.10, 3.11, 3.12, 3.13}
1111
commands = pytest --cov=zepben.eas --cov-report=xml --cov-branch
1212

1313
[testenv:build]

0 commit comments

Comments
 (0)