Skip to content

Commit 6c6de22

Browse files
committed
Update workflow.
1 parent a4975b5 commit 6c6de22

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/lint.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,20 @@ on:
1313
jobs:
1414
lint: # The name of the job
1515
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
1619
steps:
1720
- uses: actions/checkout@v4
21+
- name: Set up Python ${{ matrix.python-version }}
1822
- uses: actions/setup-python@v5
1923
with:
20-
python-version: "3.13"
24+
python-version: ${{ matrix.python-version }}
2125
cache: "pip"
2226
- name: Install dependencies
2327
run: |
24-
python -m pip install --upgrade pip
25-
python -m pip install ruff
28+
python -m pip install --upgrade pip poetry
29+
poetry install
2630
2731
- name: Run Ruff
2832
run: ruff check --output-format=github

0 commit comments

Comments
 (0)