Skip to content

Commit

Permalink
Merge pull request #4 from freedomofpress/add-basic-ci
Browse files Browse the repository at this point in the history
added CircleCI config
  • Loading branch information
zenmonkeykstop authored Jan 15, 2020
2 parents f333b24 + 0cce804 commit 3211cc0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2

jobs:
lint:
docker:
- image: python:3.7
steps:
- checkout
- run:
name: Install dependencies
command: pip install --require-hashes -r requirements/requirements.txt
- run:
name: Test
command: make docs-lint && make docs-linkcheck

workflows:
version: 2
build:
jobs:
- lint

0 comments on commit 3211cc0

Please sign in to comment.