Skip to content

Commit d245fe2

Browse files
committed
lint multiple py versions
1 parent be76555 commit d245fe2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/lint.yml

+5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@ on:
44
jobs:
55
lint:
66
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
py_version: ["3.9", "3.10", "3.11"]
710
steps:
811
- uses: actions/checkout@v4
912
- uses: actions/setup-python@v5
13+
with:
14+
python-version: ${{ matrix.py_version }}
1015
- name: install
1116
run: pip install ruff
1217
- name: check

0 commit comments

Comments
 (0)