ci: continue-on-error and ruff format
All checks were successful
ci / lint_and_test (push) Successful in 13s

Tests should still be run if ruff fails
This commit is contained in:
Chris Milne 2026-06-09 09:34:45 +01:00
parent 5d1e9c27e7
commit 1012947b67

View file

@ -8,6 +8,7 @@ on:
jobs:
lint_and_test:
runs-on: docker
continue-on-error: true
container:
image: ghcr.io/astral-sh/uv:alpine
steps:
@ -18,6 +19,7 @@ jobs:
- run: uv python install # Gets Python version from pyproject.toml
- run: uv sync
- run: uv run ruff check
- run: uv run ruff format
- run: uv run pytest test
env:
ENVIRONMENT: testing