Skip to content

Commit b085346

Browse files
committed
Refactor PyPi release workflow for broader Python version testing 🐍
Renamed the job from 'smoke_test' to 'test' and expanded the Python version matrix to include 3.9, 3.10, and 3.11. This change ensures our package is tested across a wider range of Python versions, enhancing compatibility and reliability.
1 parent 5aeabef commit b085346

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pypi_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ on:
99
- 'v*'
1010

1111
jobs:
12-
smoke_test:
12+
test:
1313
runs-on: ubuntu-latest
14-
name: Smoke Test for python versions
14+
name: Test with Python ${{ matrix.python-version }}
1515

1616
strategy:
1717
matrix:
18-
python-version: ["3.10", "3.11"]
18+
python-version: ["3.9", "3.10", "3.11"]
1919

2020
steps:
2121
- name: Checkout Code

0 commit comments

Comments
 (0)