🚧 Remove the deps installation and disable mypy caching
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful

This commit is contained in:
2024-02-11 19:56:18 +01:00
parent 2d9d7c51b5
commit 8082f7f012
2 changed files with 23 additions and 4 deletions

View File

@@ -11,9 +11,8 @@ steps:
commands: |
cd backend
wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s latest
apk add gcc
pip install poetry
poetry install --with=linters
poetry install --only=linters
ruff --output-format sarif . | ./bin/reviewdog -f sarif -reporter gitea-pr-review
- name: mypy
@@ -24,5 +23,5 @@ steps:
cd backend
wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s latest
pip install poetry
poetry install --with=linters
mypy . | ./bin/reviewdog -f mypy -reporter gitea-pr-review
poetry install --only=linters
mypy --no-incremental . | ./bin/reviewdog -f mypy -reporter gitea-pr-review