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.
actioner/.circleci/config.yml

19 lines
547 B
YAML
Raw Normal View History

2019-02-14 13:10:08 +00:00
version: 2.0
jobs:
build:
docker:
- image: circleci/python:3.7
environment:
BASIC_AUTH: "username:password"
2019-02-14 13:10:08 +00:00
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"
2019-02-14 20:17:54 +00:00
- run: pipenv run test