Skip to content

Commit

Permalink
Flip cache order to mirror how it is done downstream.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonnnj committed Feb 12, 2020
1 parent b857939 commit d99fd00
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ jobs:
- uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Cache pre-commit hooks
uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: "${{ runner.os }}-pre-commit-\
${{ hashFiles('**/.pre-commit-config.yaml') }}"
- name: Cache pip test requirements
uses: actions/cache@v1
with:
Expand All @@ -29,6 +23,12 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-test-
${{ runner.os }}-pip-
- name: Cache pre-commit hooks
uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: "${{ runner.os }}-pre-commit-\
${{ hashFiles('**/.pre-commit-config.yaml') }}"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit d99fd00

Please sign in to comment.