Skip to content

Commit a1950cd

Browse files
authored
Try to run ruff and typo only on 3.13 (#1954)
1 parent 1b0efa1 commit a1950cd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@ jobs:
3030
python -m pip install . ruff typos coverage codecov mypy pytest readme_renderer types-contextvars asyncssh
3131
pip list
3232
- name: Ruff
33+
if: ${{ matrix.python-version == '3.13' }}
3334
run: |
3435
ruff check .
3536
ruff format --check .
37+
- name: Typos
38+
if: ${{ matrix.python-version == '3.13'" && always() }}
39+
run: |
3640
typos .
3741
- name: Tests
3842
run: |

0 commit comments

Comments
 (0)