Take a stab at an initial CircleCI configuration

This commit is contained in:
Jean-Paul Calderone 2018-06-08 14:36:55 -04:00
parent c9c62fb076
commit ed3c7cba0c

21
.circleci/config.yml Normal file
View File

@ -0,0 +1,21 @@
# https://circleci.com/docs/2.0/
version: 2
workflows:
version: 2
ci:
jobs:
- "lint"
jobs:
lint:
docker:
- image: "circleci/python:2"
steps:
- "checkout"
- run:
name: "Static-ish code checks"
command: |
tox -e codechecks