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 25, 2025
1 parent e8fa2a7 commit 1452022
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 1452022

Please sign in to comment.