Skip to content

Commit

Permalink
github/workflows/lint: add mypy linting
Browse files Browse the repository at this point in the history
Not everything is typed in our scripts, but this is just to make sure
current code passes linting. More typing can be added in the future.
  • Loading branch information
kasper93 committed Jan 4, 2025
1 parent 8aa6f8e commit 8e03017
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ jobs:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v2

mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: python/mypy@master
with:
install_project_dependencies: no
options: '--check-untyped-defs'

editorconfig:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 8e03017

Please sign in to comment.