feat: implement blog project with CI pipeline
This commit is contained in:
14
.woodpecker/lint.yaml
Normal file
14
.woodpecker/lint.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
when:
|
||||
- event: [push, pull_request]
|
||||
branch: dev
|
||||
|
||||
steps:
|
||||
- name: lint
|
||||
image: python:3.11
|
||||
commands:
|
||||
- pip install uv
|
||||
- uv sync --no-dev --only-group lints
|
||||
- uv run black --check .
|
||||
- uv run ruff check .
|
||||
- uv run isort --check-only .
|
||||
|
||||
Reference in New Issue
Block a user