1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
gh-webhook-actor/.circleci/config.yml

18 lines
528 B
YAML
Raw Normal View History

2018-10-25 13:25:24 +01:00
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"
2018-10-25 19:55:17 +01:00
- run: pipenv run test