Skip to content

Commit 7614555

Browse files
committed
fix(caching): Fix python caching
1 parent 385800b commit 7614555

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

Diff for: .github/workflows/docs_build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
submodules: true
2828
- uses: actions/setup-python@v5
2929
with:
30+
cache-dependency-path: docs/requirements.txt
31+
cache: 'pip'
3032
python-version: '3.10'
3133
- name: Build
3234
run: |

Diff for: .github/workflows/docs_deploy.yml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
submodules: true
2626
- uses: actions/setup-python@v5
2727
with:
28+
cache-dependency-path: docs/requirements.txt
29+
cache: 'pip'
2830
python-version: '3.10'
2931
- name: Deploy Documentation
3032
env:

Diff for: .github/workflows/hw.yml

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
- uses: actions/setup-python@v5
5959
if: steps.check-tests.outputs.enabled == 'true'
6060
with:
61+
cache-dependency-path: tests/requirements.txt
6162
cache: 'pip'
6263
python-version: '3.10.1'
6364

Diff for: .github/workflows/qemu.yml

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
- uses: actions/setup-python@v5
5555
if: steps.check-tests.outputs.enabled == 'true'
5656
with:
57+
cache-dependency-path: tests/requirements.txt
5758
cache: 'pip'
5859
python-version: '3.x'
5960

Diff for: .github/workflows/wokwi.yml

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
- uses: actions/setup-python@v5
6464
if: steps.check-tests.outputs.enabled == 'true'
6565
with:
66+
cache-dependency-path: tests/requirements.txt
6667
cache: 'pip'
6768
python-version: '3.x'
6869

0 commit comments

Comments
 (0)