# 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 .