We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a4554 commit 28f2a05Copy full SHA for 28f2a05
.github/workflows/python-app.yml
@@ -21,6 +21,14 @@ jobs:
21
with:
22
python-version: "3.10"
23
24
+ - name: Cache Python dependencies
25
+ uses: actions/cache@v4
26
+ with:
27
+ path: ~/.cache/pip
28
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
29
+ restore-keys: |
30
+ ${{ runner.os }}-pip-
31
+
32
- name: Install dependencies
33
run: |
34
python -m pip install --upgrade pip
.github/workflows/python-publish.yml
@@ -19,6 +19,14 @@ jobs:
19
20
python-version: "3.x"
0 commit comments