Skip to content

Commit

Permalink
build(ci): activate mypy checks
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Jan 22, 2024
1 parent 3c80097 commit e6c455e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
python-version: "3.10"
- uses: pre-commit/[email protected]

#mypy:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: "3.10"
# - name: Install nox
# run: pip install nox
# - name: run mypy checks
# run: nox -s mypy
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install nox
run: pip install nox
- name: run mypy checks
run: nox -s mypy

#docs:
# needs: [lint] #, mypy]
Expand All @@ -45,7 +45,7 @@ jobs:
# run: nox -s docs

build:
needs: [lint] #, mypy]
needs: [lint, mypy]
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit e6c455e

Please sign in to comment.