Skip to content

Commit 84e4185

Browse files
committed
Try to run ruff and typo only on 3.13
There is no need to run N times. This in particular means that we can still see from a glace the tests are passing on older python. I also try to run typo regardless of wether ruff check and formating passes, which hopefully avoid one iteration of fix, push and CI failing.
1 parent cd7c6a2 commit 84e4185

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)