diff --git a/.circleci/config.yml b/.circleci/config.yml index dcd24f395..5702d0853 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,6 +22,9 @@ jobs: steps: - checkout + - restore_cache: + key: pre-commit-{{ checksum ".pre-commit-config.yaml" }} + - run: name: Install lint requirements command: | @@ -31,6 +34,11 @@ jobs: name: lint command: make lint + - save_cache: + key: pre-commit-{{ checksum ".pre-commit-config.yaml" }} + paths: + - "/root/.cache" + test-docs: <<: *defaults resource_class: small