papis-bbt-formatter/.woodpecker/lint.yml

17 lines
464 B
YAML
Raw Normal View History

2023-09-12 09:00:19 +00:00
pipeline:
lint_ruff:
image: python
commands:
- pip install ruff
- python --version && poetry --version && ruff --version
- echo "----------------- running ruff lint ------------------"
- ruff check .
lint_black:
image: python
commands:
- pip install black
- python --version && poetry --version && black --version
- echo "----------------- running black lint ----------------"
- black --check .