Fix mypy paths to check

* for some reason this error doesn't happen locally
This commit is contained in:
rany2
2023-01-05 01:51:16 +02:00
parent a1c5924024
commit 018e8f56af

View File

@@ -7,9 +7,9 @@ on:
branches: [ "master" ]
jobs:
code-quality:
lint:
runs-on: ubuntu-latest
name: "Check code quality"
name: "Lint"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
@@ -18,8 +18,8 @@ jobs:
- name: Install all dependencies
run: pip install .[dev]
- name: Run mypy
run: mypy --pretty .
run: mypy --pretty src examples
- name: Run isort
run: isort --check-only --diff .
- name: Run black
run: black --check --diff .
run: black --check --diff .