archive
/
actioner
Archived
1
Fork 0

Add CI config

This commit is contained in:
Jake Howard 2019-02-14 13:10:08 +00:00
parent eb905b6ad4
commit b004d96b00
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 15 additions and 0 deletions

15
.circleci/config.yml Normal file
View 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"