We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5642399 commit 4314395Copy full SHA for 4314395
1 file changed
.github/workflows/ci.yml
@@ -2,7 +2,7 @@ name: CI
2
3
on:
4
push:
5
- branches: [ "master", "main" ]
+ branches: ["master", "main"]
6
pull_request:
7
8
jobs:
@@ -18,6 +18,15 @@ jobs:
18
with:
19
python-version: "3.11"
20
21
+ # 🔹 Cache pip downloads (speed boost)
22
+ - name: Cache pip
23
+ uses: actions/cache@v4
24
+ with:
25
+ path: ~/.cache/pip
26
+ key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
27
+ restore-keys: |
28
+ ${{ runner.os }}-pip-
29
+
30
- name: Install dependencies
31
run: |
32
pip install -r requirements.txt
0 commit comments