Skip to content

Commit

Permalink
better cache
Browse files Browse the repository at this point in the history
  • Loading branch information
akku1139 authored Aug 23, 2024
1 parent 610331e commit a8c4688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
- uses: actions/cache@v4
id: pip-cache
with:
path: ~/.local/lib/python3.10
path: ~/.cache/pip
key: pip-cache-${{ hashFiles('scripts/requirements.txt') }}
restore-keys: pip-cache-

- name: Install Dependencies
if: steps.pip-cache.outputs.cache-hit != 'true'
# if: steps.pip-cache.outputs.cache-hit != 'true'
run: pip install -r ./scripts/requirements.txt

- name: Make
Expand Down

0 comments on commit a8c4688

Please sign in to comment.