Skip to content

Commit

Permalink
fix(ci): cache the right thing
Browse files Browse the repository at this point in the history
  • Loading branch information
dhdaines committed Jul 16, 2024
1 parent 9b0a479 commit 4a16d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt')}}-${{ hashFiles('**/requirements-dev.txt') }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml')}}

- name: Install Python dependencies
run: python -m pip install hatch
Expand All @@ -47,7 +47,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt')}}-${{ hashFiles('**/requirements-dev.txt') }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml')}}

- name: Install Python dependencies
run: python -m pip install hatch
Expand Down

0 comments on commit 4a16d03

Please sign in to comment.