chore: Remove woodpecker files

This commit is contained in:
Marty Oehme 2025-06-09 10:46:28 +02:00
parent 12f0935ed4
commit e3a2a2068a
Signed by: Marty
GPG key ID: 4E535BC19C61886E
3 changed files with 0 additions and 35 deletions

View file

@ -1,16 +0,0 @@
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 .

View file

@ -1,9 +0,0 @@
pipeline:
pyright:
image: nikolaik/python-nodejs
commands:
- npm install --global pyright
- poetry install
- python --version && poetry --version && pyright --version
- echo "------------- running pyright typecheck -------------"
- poetry run pyright

View file

@ -1,10 +0,0 @@
branches: master
pipeline:
pytest:
image: ghcr.io/withlogicco/poetry:1.5.1
commands:
- poetry install
- python --version && poetry --version
- echo "------------- running pytest -------------"
- poetry run pytest