22 lines
661 B
YAML
22 lines
661 B
YAML
when:
|
|
- event: push
|
|
- branch:
|
|
exclude: [master, release/*]
|
|
|
|
steps:
|
|
- name: ruff
|
|
image: python:3.12-alpine
|
|
failure: ignore
|
|
commands: |
|
|
wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s latest
|
|
pip install ruff
|
|
ruff --output-format sarif . | ./bin/reviewdog -f=sarif -reporter=gitea-pr-review -tee
|
|
|
|
- name: mypy
|
|
image: python:3.12-alpine
|
|
failure: ignore
|
|
commands: |
|
|
wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s latest
|
|
pip install mypy
|
|
mypy . | ./bin/reviewdog -f=mypy -reporter=gitea-pr-review -tee
|