1
Fork 0

Add circleci config

This commit is contained in:
Jake Howard 2018-10-25 13:25:24 +01:00
parent 7929bd183c
commit 7cc9d9616e
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 16 additions and 0 deletions

16
.circleci/config.yml Normal file
View File

@ -0,0 +1,16 @@
version: 2.0
jobs:
build:
docker:
- image: circleci/python:latest
working_directory: ~/gh-webhook-actor
steps:
- checkout
- restore_cache:
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
- run: pipenv install
- save_cache:
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
paths:
- "/home/circleci/.local/share/virtualenvs"