papis-extract/.woodpecker/lint.yml
Marty Oehme f3cbe31990
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/static_analysis Pipeline failed
Use deprecated pipeline key for server woodpecker version
2023-08-29 09:59:17 +02:00

16 lines
464 B
YAML

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 .