11 lines
249 B
YAML
11 lines
249 B
YAML
when:
|
|
branch: main
|
|
|
|
steps:
|
|
pytest:
|
|
image: ghcr.io/withlogicco/poetry:1.5.1
|
|
commands:
|
|
- poetry install
|
|
- python --version && poetry --version
|
|
- echo "------------- running pytest -------------"
|
|
- poetry run pytest
|