ffmpeg-encoding-benchmark/.woodpecker/linting.yml
RealStickman 1f5036effe
Some checks failed
ci/woodpecker/push/linting Pipeline failed
Install requirements
2022-10-24 20:23:33 +02:00

19 lines
436 B
YAML

# https://woodpecker-ci.org/docs/usage/pipeline-syntax
pipeline:
typecheck:
image: python:latest
group: linting
commands:
- python --version
- pip install -U pyright --quiet
- pip install -r requirements.txt
- pyright
format:
image: python:latest
group: linting
commands:
- python --version
- pip install -U black --quiet
- black --check --diff --color --verbose .