ci: switch CI from Forgejo Actions to Woodpecker CI
All checks were successful
ci/woodpecker/push/style Pipeline was successful
All checks were successful
ci/woodpecker/push/style Pipeline was successful
This commit is contained in:
parent
744bbdb245
commit
d8b0e80487
2 changed files with 18 additions and 23 deletions
18
.woodpecker/style.yaml
Normal file
18
.woodpecker/style.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
# 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:
|
||||
event: [push, pull_request]
|
||||
|
||||
steps:
|
||||
- name: ruff
|
||||
image: python
|
||||
commands:
|
||||
- pip install ruff
|
||||
- ruff check .
|
||||
- name: black
|
||||
image: pyfound/black
|
||||
commands:
|
||||
- black --check --diff .
|
Loading…
Add table
Add a link
Reference in a new issue