Compare commits
3 Commits
v1.2.0
...
feature/ci
| Author | SHA1 | Date | |
|---|---|---|---|
| a9a66d0abe | |||
| 9d7636448d | |||
| dfc97c24ee |
25
.woodpecker.yml
Normal file
25
.woodpecker.yml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install dependencies
|
||||||
|
image: python:3.11-slim
|
||||||
|
commands:
|
||||||
|
- pip install -e .[dev]
|
||||||
|
|
||||||
|
- name: Run pytest
|
||||||
|
image: python:3.11-slim
|
||||||
|
commands:
|
||||||
|
- pytest -q
|
||||||
|
|
||||||
|
- name: Run ruff
|
||||||
|
image: python:3.11-slim
|
||||||
|
commands:
|
||||||
|
- ruff check .
|
||||||
|
|
||||||
|
- name: Run mypy
|
||||||
|
image: python:3.11-slim
|
||||||
|
commands:
|
||||||
|
- mypy app tests
|
||||||
Reference in New Issue
Block a user