We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f22b6cc commit 5f526e7Copy full SHA for 5f526e7
.github/workflows/hybrid_system_test.yaml
@@ -43,14 +43,19 @@ jobs:
43
with:
44
fetch-depth: 0
45
46
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
47
id: setup-pypy
48
if: github.event_name != 'workflow_dispatch'
49
50
python-version: "pypy3.9"
51
- cache: "pip"
52
53
- - run: pip install -r scripts/requirements.txt
+ - name: Set up pip dependency caching
+ uses: namespacelabs/nscloud-cache-action@v1
54
+ with:
55
+ cache: python
56
+
57
+ - name: Install Python Dependencies
58
+ run: pip install -r scripts/requirements.txt
59
60
61
- name: Check for system-test-triggering changes
0 commit comments