Update woodpecker configuration
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/tests Pipeline was successful

This commit is contained in:
Sonny Bakker 2025-05-05 15:11:55 +02:00
parent 10affeb32f
commit 91949622b7
3 changed files with 22 additions and 20 deletions

View file

@ -1,19 +1,18 @@
when:
- event: push
branch: main
- event: pull_request
- event: manual
steps:
- name: python linting
image: python:3.11
image: ghcr.io/astral-sh/uv:latest
commands:
- pip install uv
- uv sync --group ci
- ./.venv/bin/ruff check src/
- ./.venv/bin/ruff format --check src/
- uv run --no-sync -- check src/
- uv run --no-sync -- ruff format --check src/
- name: javascript linting
image: node:lts
image: node:lts-alpine
commands:
- npm install
- npm ci
- npm run lint