newsreader/.woodpecker/lint.yaml
Sonny Bakker 3281b70bbe
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/tests Pipeline failed
Update uv and ruff configuration
2025-03-23 15:12:07 +01:00

19 lines
358 B
YAML

when:
- event: push
branch: main
- event: pull_request
steps:
- name: python linting
image: python:3.11
commands:
- pip install uv
- uv sync
- ./.venv/bin/ruff check src/
- ./.venv/bin/ruff format --check src/
- name: javascript linting
image: node:lts
commands:
- npm install
- npm run lint