You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
389 B
YAML
22 lines
389 B
YAML
5 years ago
|
version: 2.1
|
||
|
orbs:
|
||
|
codecov: codecov/codecov@1.0.5
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
build-python36:
|
||
|
docker:
|
||
|
- image: ubuntu:18.04
|
||
|
steps:
|
||
|
- run: apt-get update ; apt-get install -y make git curl
|
||
|
- checkout
|
||
|
- run: make install
|
||
|
- run: pip install -r requirements-test.txt
|
||
|
- run: make coverage
|
||
|
- codecov/upload
|
||
|
|
||
|
workflows:
|
||
|
build:
|
||
|
jobs:
|
||
|
- build-python36
|