9 lines
183 B
YAML
9 lines
183 B
YAML
when:
|
|
- event: [push, pull_request, manual]
|
|
|
|
steps:
|
|
test:
|
|
image: python:3.11-slim
|
|
commands:
|
|
- pip install --no-cache-dir . pytest
|
|
- python -m pytest tests/ -v
|