Skip to content

Commit

Permalink
Change: Re-enable type checks with mypy in CI
Browse files Browse the repository at this point in the history
The mypy check is only included in the generic ci-python.yml workflow
which isn't used because of issues with GitHub actions detecting theses
runs for satisfying the branch protection rules.
  • Loading branch information
bjoernricks committed Aug 7, 2023
1 parent 17bdf6f commit bde7fc2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

mypy:
name: Check types
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
uses: greenbone/workflows/.github/workflows/typing-python.yml@main
with:
python-version: ${{ matrix.python-version }}

codecov:
name: Upload coverage to codecov.io
runs-on: "ubuntu-latest"
Expand Down

0 comments on commit bde7fc2

Please sign in to comment.