Skip to content

Commit

Permalink
Teach CircleCI how to deploy the docs and update coveralls.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikrose committed Mar 17, 2021
1 parent 266d50f commit 2e3076f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,16 @@ jobs:
version: 86.0.1
- checkout
- run: make -C fathom lint test
- run: make -C fathom coveralls
# Upload new coveralls stats only on master, which is the only place
# COVERALLS_REPO_TOKEN is defined:
- run: [ ! -z "$COVERALLS_REPO_TOKEN" ] && make -C fathom coveralls
test_python:
docker:
- image: cimg/python:3.7.9-node
steps:
- checkout
- run: make -C cli lint test
- run: make docs

workflows:
version: 2
js_python_and_docs:
jobs:
- test_js
- test_python
# Upload new docs only on master, which is the only place GH_TOKEN is
# defined. This saves time over doing it in a separate job.
- run: [ ! -z "$GH_TOKEN" ] && docs/deploy-docs
File renamed without changes.

0 comments on commit 2e3076f

Please sign in to comment.