17 lines
291 B
YAML
17 lines
291 B
YAML
stages:
|
|
- test
|
|
|
|
run-tests:
|
|
stage: test
|
|
image: python:3.12
|
|
variables:
|
|
PIP_ROOT_USER_ACTION: ignore
|
|
UV_LINK_MODE: copy
|
|
before_script:
|
|
- python -m pip install --upgrade pip
|
|
- pip install uv
|
|
- uv sync --locked
|
|
script:
|
|
- uv run ruff format --check
|
|
- uv run ruff check
|