Add CI config
This commit is contained in:
parent
eb905b6ad4
commit
b004d96b00
1 changed files with 15 additions and 0 deletions
15
.circleci/config.yml
Normal file
15
.circleci/config.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: 2.0
|
||||
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: circleci/python:3.5
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||
- run: pipenv install -d
|
||||
- save_cache:
|
||||
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||
paths:
|
||||
- "/home/circleci/.local/share/virtualenvs"
|
Reference in a new issue