2024-01-06 10:11:30 +00:00
|
|
|
steps:
|
2023-08-29 10:15:10 +00:00
|
|
|
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 .
|