File tree 2 files changed +3
-15
lines changed
2 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,9 @@ jobs:
126
126
- uses : actions/setup-python@v5
127
127
with :
128
128
python-version : " 3.10"
129
+ cache : pip
130
+ cache-dependency-path : |
131
+ integration-tests/requirements.txt
129
132
130
133
# FIXME: The test_bootstrap.py script has duplicated logic to run build
131
134
# and start images and run things in them. This makes tests slower,
Original file line number Diff line number Diff line change 69
69
python3 -m venv /srv/venv
70
70
echo '/srv/venv/bin' >> $GITHUB_PATH
71
71
72
- # WARNING: This action loads a cache of pip dependencies based on the
73
- # declared key, and it will save a cache for that key on job
74
- # completion. Make sure to update the key to bust the cache
75
- # properly if you make a change that should influence it.
76
- - name : Load cached Python dependencies
77
- uses : actions/cache@v4
78
- with :
79
- path : /srv/venv/
80
- key : >-
81
- pip-
82
- ${{ matrix.runs_on }}-
83
- ${{ matrix.ubuntu_version }}-
84
- ${{ matrix.python_version }}-
85
- ${{ hashFiles('setup.py', 'dev-requirements.txt', '.github/workflows/unit-test.yaml') }}
86
-
87
72
- name : Install Python dependencies
88
73
run : |
89
74
pip install -r dev-requirements.txt
You can’t perform that action at this time.
0 commit comments