15 lines
286 B
YAML
15 lines
286 B
YAML
|
|
labels:
|
||
|
|
platform: linux/amd64
|
||
|
|
|
||
|
|
steps:
|
||
|
|
- name: lint
|
||
|
|
image: ghcr.io/astral-sh/uv:python3.13-alpine
|
||
|
|
commands:
|
||
|
|
- uv run ruff check .
|
||
|
|
- uv run ruff format --check .
|
||
|
|
|
||
|
|
- name: test
|
||
|
|
image: ghcr.io/astral-sh/uv:python3.13-alpine
|
||
|
|
commands:
|
||
|
|
- uv run pytest
|