Skip to content

Commit

Permalink
use absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
gotcha committed Sep 18, 2023
1 parent 30f517f commit 4ebbe9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Pip cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
path: /github/home/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.config[0] }}-${{ hashFiles('setup.*', 'tox.ini') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.config[0] }}-
Expand All @@ -85,13 +85,13 @@ jobs:
pip install tox
- name: Prepare buildout egg cache
run: |
mkdir ~/.buildout
echo "[buildout]" >> ~/.buildout/default.cfg
echo "eggs-directory = ~/eggs" >> ~/.buildout/default.cfg
mkdir /github/home/.buildout
echo "[buildout]" >> /github/home/.buildout/default.cfg
echo "eggs-directory = /github/home/eggs" >> /github/home/.buildout/default.cfg
- name: Cache eggs
uses: actions/cache@v3
with:
path: ~/eggs
path: /github/home/eggs
key: ${{ runner.os }}-eggs-${{ matrix.config[0] }}-${{ matrix.config[1] }}-${{ hashFiles('*cfg') }}
restore-keys: |
${{ runner.os }}-eggs-${{ matrix.config[0] }}-${{ matrix.config[1] }}-
Expand Down

0 comments on commit 4ebbe9b

Please sign in to comment.