2026-03-22 10:31:00 -06:00
|
|
|
labels:
|
|
|
|
|
platform: linux/amd64
|
|
|
|
|
|
2026-03-22 10:36:44 -06:00
|
|
|
when:
|
|
|
|
|
- event: [push, pull_request]
|
|
|
|
|
|
|
|
|
|
variables:
|
|
|
|
|
- &uv_env
|
|
|
|
|
UV_LINK_MODE: copy
|
|
|
|
|
|
2026-03-22 10:31:00 -06:00
|
|
|
steps:
|
|
|
|
|
- name: lint
|
|
|
|
|
image: ghcr.io/astral-sh/uv:python3.13-alpine
|
2026-03-22 10:36:44 -06:00
|
|
|
environment:
|
|
|
|
|
<<: *uv_env
|
2026-03-22 10:31:00 -06:00
|
|
|
commands:
|
|
|
|
|
- uv run ruff check .
|
|
|
|
|
- uv run ruff format --check .
|
|
|
|
|
|
|
|
|
|
- name: test
|
|
|
|
|
image: ghcr.io/astral-sh/uv:python3.13-alpine
|
2026-03-22 10:36:44 -06:00
|
|
|
environment:
|
|
|
|
|
<<: *uv_env
|
2026-03-22 10:31:00 -06:00
|
|
|
commands:
|
|
|
|
|
- uv run pytest
|