Merge pull request #1 from gmgauthier/circleci-project-setup
Circleci project setup
This commit is contained in:
commit
07105dab4f
22
.circleci/config.yml
Normal file
22
.circleci/config.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
version: 2.1
|
||||||
|
|
||||||
|
orbs:
|
||||||
|
python: circleci/python@0.2.1
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-test:
|
||||||
|
executor: python/default
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- python/load-cache
|
||||||
|
- python/install-deps
|
||||||
|
- python/save-cache
|
||||||
|
- run:
|
||||||
|
command: |
|
||||||
|
pipenv install
|
||||||
|
pipenv run pytest -vv
|
||||||
|
workflows:
|
||||||
|
main:
|
||||||
|
jobs:
|
||||||
|
- build-and-test
|
||||||
|
|
Loading…
Reference in New Issue
Block a user