We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1527d05 commit 470a49bCopy full SHA for 470a49b
.github/workflows/test.yaml
@@ -21,13 +21,19 @@ jobs:
21
run: |
22
uvx --with . mypy src/ptpython
23
- name: Code formatting
24
+ if: ${{ matrix.python-version == '3.13' }}
25
26
uvx ruff check .
27
uvx ruff format --check .
28
+ - name: Typos
29
30
+ run: |
31
+ uvx typos .
32
- name: Unit test
33
34
uvx --with . pytest tests/
35
- name: Validate README.md
36
37
# Ensure that the README renders correctly (required for uploading to PyPI).
38
39
uv pip install readme_renderer
0 commit comments