We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b0958f commit e2e435eCopy full SHA for e2e435e
1 file changed
.github/workflows/cache-gh-task.yml
@@ -0,0 +1,21 @@
1
+name: Test cache
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v4
11
12
+ - name: Cache pip
13
+ uses: actions/cache@v4
14
+ with:
15
+ path: ~/.cache/pip
16
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
17
+ restore-keys: |
18
+ ${{ runner.os }}-pip-
19
20
+ - name: Install deps
21
+ run: pip install -r requirements.txt
0 commit comments