Marty Oehme
b564ab4792
Added static analysis (lint, type checking) to be done on each push, and testing to be done on each master branch commit.
10 lines
248 B
YAML
10 lines
248 B
YAML
branches: master
|
|
|
|
pipeline:
|
|
pytest:
|
|
image: ghcr.io/withlogicco/poetry:1.5.1
|
|
commands:
|
|
- poetry install
|
|
- python --version && poetry --version
|
|
- echo "------------- running pytest -------------"
|
|
- poetry run pytest
|