Skip to content

Commit

Permalink
Run mypy in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kytta committed Sep 11, 2024
1 parent a16244e commit 02ed7e1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,16 @@ jobs:
name: coverage-html
path: htmlcov
if: ${{ failure() }}

mypy:
runs-on: ubuntu-latest
needs: build

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: astral-sh/setup-uv@v2
- run: uvx mypy src

0 comments on commit 02ed7e1

Please sign in to comment.