Skip to content

Commit

Permalink
Merge pull request #15 from tisnik/mypy-on-ci
Browse files Browse the repository at this point in the history
Mypy on CI
  • Loading branch information
tisnik authored Oct 2, 2024
2 parents e90feca + 7094c3f commit acf40d9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/mypy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Type checks

on:
- push
- pull_request

jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Mypy install
run: pip install --user mypy pydantic
- name: Type checks
run: mypy --explicit-package-bases --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs --ignore-missing-imports --disable-error-code attr-defined ols/

0 comments on commit acf40d9

Please sign in to comment.