cloud-api/.forgejo/workflows/publish.yaml
luxferre 52ecd64f70
Some checks failed
ci / lint_and_test (push) Failing after 7s
ci: ruff run via uv
2026-06-08 14:47:33 +01:00

23 lines
487 B
YAML

---
name: ci
on:
push:
branches:
- main
jobs:
lint_and_test:
runs-on: docker
container:
image: ghcr.io/astral-sh/uv:alpine
steps:
- run: apk add --no-cache nodejs npm git
- uses: actions/checkout@v4
with:
submodules: true
- run: uv python install # Gets Python version from pyproject.toml
- run: uv sync
- run: uv run ruff check
- run: uv run pytest test
env:
ENVIRONMENT: testing