Skip to content

Commit

Permalink
updated the CircleCI config file to fix indentation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
monocongo committed Feb 1, 2020
1 parent bbc4190 commit 6078087
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ jobs:
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}
- v1-dependencies-
- run:
name: install dependencies
command: |
Expand All @@ -26,7 +25,7 @@ jobs:
- save_cache:
paths:
- ./venv
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}

- run:
Expand Down

0 comments on commit 6078087

Please sign in to comment.