2024-09-23 16:14:05 +01:00
|
|
|
definitions:
|
2024-09-23 16:28:03 +01:00
|
|
|
scripts:
|
2026-01-26 16:52:55 +00:00
|
|
|
- script: &install
|
|
|
|
|
pip install uv;
|
|
|
|
|
uv sync --group dev --group test;
|
2024-09-23 16:14:05 +01:00
|
|
|
|
2024-09-23 15:39:28 +01:00
|
|
|
pipelines:
|
2024-09-30 12:25:32 +01:00
|
|
|
default:
|
2024-10-04 15:26:57 +00:00
|
|
|
- step:
|
2026-01-26 16:52:55 +00:00
|
|
|
name: Install Dependencies
|
|
|
|
|
image: python:3.12.7
|
2024-10-04 15:26:57 +00:00
|
|
|
script:
|
2026-01-26 16:52:55 +00:00
|
|
|
- *install
|
2024-10-04 15:26:57 +00:00
|
|
|
caches:
|
|
|
|
|
- pip
|
2024-10-15 16:20:27 +00:00
|
|
|
- parallel:
|
|
|
|
|
- step:
|
2026-01-26 16:52:55 +00:00
|
|
|
name: Lint (black)
|
2024-10-22 13:45:53 +00:00
|
|
|
image: python:3.12.7
|
|
|
|
|
script:
|
2026-01-26 16:52:55 +00:00
|
|
|
- *install
|
|
|
|
|
- uv run black --check src/
|
2024-10-22 13:45:53 +00:00
|
|
|
caches:
|
|
|
|
|
- pip
|
|
|
|
|
- step:
|
2026-01-26 16:52:55 +00:00
|
|
|
name: Type Check (mypy)
|
2024-10-22 13:45:53 +00:00
|
|
|
image: python:3.12.7
|
|
|
|
|
script:
|
2026-01-26 16:52:55 +00:00
|
|
|
- *install
|
|
|
|
|
- uv run mypy src/
|
2024-10-22 13:45:53 +00:00
|
|
|
caches:
|
|
|
|
|
- pip
|
|
|
|
|
- step:
|
2026-01-26 16:52:55 +00:00
|
|
|
name: Unit Tests (pytest)
|
2024-10-22 13:45:53 +00:00
|
|
|
image: python:3.12.7
|
|
|
|
|
script:
|
2026-01-26 16:52:55 +00:00
|
|
|
- *install
|
|
|
|
|
- uv run pytest src/tests/
|
2024-10-22 13:45:53 +00:00
|
|
|
caches:
|
|
|
|
|
- pip
|