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.
29 lines
597 B
YAML
29 lines
597 B
YAML
version: 2.1
|
|
orbs:
|
|
codecov: codecov/codecov@1.0.5
|
|
|
|
jobs:
|
|
|
|
test-python36:
|
|
docker:
|
|
- image: python:3.6.12
|
|
environment:
|
|
- LC_ALL=C.UTF-8
|
|
- PYTHONIOENCODING: utf-8
|
|
steps:
|
|
- run: apt-get update; apt-get install -y make git curl wget imagemagick
|
|
- checkout
|
|
- run: pip3 install --upgrade pip
|
|
- run: make install deps-test PIP_INSTALL="pip3 install"
|
|
- run: make coverage
|
|
- codecov/upload
|
|
|
|
workflows:
|
|
build:
|
|
jobs:
|
|
- test-python36:
|
|
filters:
|
|
branches:
|
|
ignore:
|
|
- screenshots
|