2024-06-22 18:03:36 +02:00
|
|
|
# Links & Resources
|
|
|
|
# - https://hub.docker.com/_/python
|
|
|
|
# - https://docs.astral.sh/ruff/installation/
|
|
|
|
# - https://black.readthedocs.io/en/stable/usage_and_configuration/black_docker_image.html
|
|
|
|
|
|
|
|
when:
|
2024-06-23 21:06:12 +02:00
|
|
|
event: [push, pull_request, tag]
|
2024-06-22 18:03:36 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: ruff
|
|
|
|
image: python
|
|
|
|
commands:
|
|
|
|
- pip install ruff
|
|
|
|
- ruff check .
|
|
|
|
- name: black
|
|
|
|
image: pyfound/black
|
|
|
|
commands:
|
|
|
|
- black --check --diff .
|