13 lines
192 B
YAML
13 lines
192 B
YAML
when:
|
|
- event: [push, pull_request]
|
|
branch: main
|
|
|
|
steps:
|
|
- name: tests
|
|
image: python:3.11
|
|
commands:
|
|
- pip install uv
|
|
- uv sync --group tests
|
|
- uv run pytest
|
|
|