Skip to content

Commit

Permalink
ci: add a job to check for type hinting and annotation
Browse files Browse the repository at this point in the history
Signed-off-by: Davide Madrisan <[email protected]>
  • Loading branch information
madrisan committed Dec 25, 2024
1 parent 344db75 commit ff43a92
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
black: true
flake8: false

- name: Analysing the code with pylint
- name: Python type hinting and annotations checks with Mypy
run: |
uv run mypy *.py
- name: Python code analysis with Pylint
run: |
uv run pylint --output-format=text ./**/*.py

0 comments on commit ff43a92

Please sign in to comment.