Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ jobs:
path: .venv
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}

- name: Upgrade pip
shell: bash
run: poetry run pip install --upgrade pip

- name: Check poetry.lock consistency
shell: bash
run: poetry check --lock
Expand All @@ -48,12 +52,10 @@ jobs:
shell: bash
run: poetry install --all-extras

- name: Upgrade pip
shell: bash
run: poetry run pip install --upgrade pip

- name: Ready the MyPy Cache
shell: bash
run: mkdir .mypy_cache

- uses: pre-commit/action@v3.0.1
with:
extra_args: --verbose
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repos:
types: ['python']
- id: mypy
name: MyPy
entry: poetry run mypy --install-types --non-interactive
entry: poetry run mypy --install-types --non-interactive --verbose
language: system
types: ['python']
- id: pylint
Expand Down
Loading