We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf86f7a commit e0d7c34Copy full SHA for e0d7c34
.github/workflows/lint.yml
@@ -22,3 +22,6 @@ jobs:
22
run: pip install ruff
23
- name: check
24
run: ruff check --target-version ${{ matrix.ruff_version }}
25
+ - name: compileall
26
+ # sigh because ruff doesn't check type syntax
27
+ run: python -m compileall -f *.py examples/
0 commit comments