File tree Expand file tree Collapse file tree 2 files changed +16
-11
lines changed
Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 2020 - name : Install Python dependencies
2121 run : poetry install --no-interaction
2222 - name : Execute pre-commit handler
23- run : poetry run pre-commit run -a
23+ run : |
24+ poetry run pre-commit run check-toml
25+ poetry run pre-commit run trailing-whitespace
26+ poetry run pre-commit run end-of-file-fixer
27+ poetry run pre-commit run ruff
28+ poetry run pre-commit run ruff-format
Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ repos:
1818 - id : ruff-format
1919 args : [ '--config', 'pyproject.toml' ]
2020
21- # - repo: local
22- # hooks:
23- # - id: mypy
24- # name: mypy
25- # entry: poetry run mypy
26- # args: ["--config-file", "pyproject.toml"]
27- # files: "core" # start with the core being type checked
28- # language: system
29- # types: [ python ]
30- # require_serial: true
21+ - repo : local
22+ hooks :
23+ - id : mypy
24+ name : mypy
25+ entry : poetry run mypy
26+ args : ["--config-file", "pyproject.toml"]
27+ files : " core" # start with the core being type checked
28+ language : system
29+ types : [ python ]
30+ require_serial : true
You can’t perform that action at this time.
0 commit comments