13 lines
214 B
YAML
13 lines
214 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: python:3.7
|
|
environment:
|
|
CODECOV_TOKEN:
|
|
from_secret: codecov_token
|
|
commands:
|
|
- pip install poetry
|
|
- poetry install
|
|
- poetry run pytest
|