Skip to content

Commit

Permalink
Tagging Python Version in Key
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Dec 8, 2020
1 parent cfbb4c6 commit 993809c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-lint-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-lint-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-lint
${{ runner.os }}-${{ matrix.python-version }}-pip-lint
- name: Run Linting
run: |
Expand Down Expand Up @@ -62,9 +62,9 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-install-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-install-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-install
${{ runner.os }}-${{ matrix.python-version }}-pip-install
- name: Make Deps
run: make deps
Expand Down Expand Up @@ -102,9 +102,9 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-coverage-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-coverage-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-coverage
${{ runner.os }}-${{ matrix.python-version }}-pip-coverage
- name: Make Deps
run: |
Expand Down

0 comments on commit 993809c

Please sign in to comment.