🚧 Fix reviewdog path
All checks were successful
ci/woodpecker/pr/lint Pipeline was successful

This commit is contained in:
2024-02-11 19:34:51 +01:00
parent 812d7c0a61
commit 825a852c67

View File

@@ -9,10 +9,10 @@ steps:
failure: ignore
secrets: ["reviewdog_gitea_api_token", "gitea_address"]
commands: |
cd backend
env
wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s latest
pip install ruff
cd backend
ruff --output-format sarif . > /tmp/ruff.log
cat /tmp/ruff.log
cat /tmp/ruff.log | ./bin/reviewdog -f sarif -reporter gitea-pr-review
@@ -22,7 +22,7 @@ steps:
failure: ignore
secrets: ["reviewdog_gitea_api_token", "gitea_address"]
commands: |
cd backend
wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s latest
pip install mypy
cd backend
mypy . | ./bin/reviewdog -f mypy -reporter gitea-pr-review