Add circleci config
This commit is contained in:
parent
7929bd183c
commit
7cc9d9616e
1 changed files with 16 additions and 0 deletions
16
.circleci/config.yml
Normal file
16
.circleci/config.yml
Normal 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"
|
Reference in a new issue