1
0
Fork 0
mirror of https://github.com/mikegerber/ocrd_calamari.git synced 2025-06-09 19:59:53 +02:00

smoke test, circle ci

Conflicts:
	Makefile
	ocrd_calamari/__init__.py
This commit is contained in:
Konstantin Baierer 2019-08-21 19:52:08 +02:00 committed by Gerber, Mike
parent afe6eec5a2
commit b54ccf90f7
8 changed files with 167 additions and 18 deletions

21
.circleci/config.yml Normal file
View file

@ -0,0 +1,21 @@
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