Skip to content

Commit

Permalink
chore: fix cache path
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuyui committed Jun 12, 2023
1 parent bac544d commit 5adc446
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
id: cache-python
uses: actions/cache@v3
with:
path: ~/.cache/pypoetry/virtualenvs
# path: ~/.cache/pypoetry/virtualenvs
# for macOS, use the following path
path: ~/Library/Caches/pypoetry/virtualenvs
key: ${{ runner.os }}-build-${{ matrix.python }}-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ matrix.python }}-${{ hashFiles('**/poetry.lock') }}
Expand Down

0 comments on commit 5adc446

Please sign in to comment.