Skip to content

Commit 8f859be

Browse files
authored
Merge pull request josegonzalez#441 from Iamrodos/feat/python-version-requirements-clean
chore: Enforce Python 3.8+ requirement and add multi-version CI testing
2 parents 3220265 + 80e00d3 commit 8f859be

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
lint:
1616
name: lint
1717
runs-on: ubuntu-24.04
18+
strategy:
19+
matrix:
20+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1821

1922
steps:
2023
- name: Checkout repository
@@ -24,7 +27,7 @@ jobs:
2427
- name: Setup Python
2528
uses: actions/setup-python@v6
2629
with:
27-
python-version: "3.12"
30+
python-version: ${{ matrix.python-version }}
2831
cache: "pip"
2932
- run: pip install -r release-requirements.txt && pip install wheel
3033
- run: flake8 --ignore=E501,E203,W503

0 commit comments

Comments
 (0)