Skip to content

Commit a0bae72

Browse files
committed
add cache to speed up build
1 parent c9ba6b2 commit a0bae72

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/update_conferences.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ jobs:
3636
with:
3737
python-version: "3.13"
3838

39-
- name: Install deps (if any)
40-
run: |
41-
if [ -f miner/requirements.txt ]; then pip install -r miner/requirements.txt; fi
39+
- uses: actions/setup-python@v5
40+
with:
41+
cache: 'pip'
42+
cache-dependency-path: |
43+
miner/requirements.txt
4244
4345
- name: Mine conferences from Researchr
4446
run: python miner/get_confs_from_researchr.py

0 commit comments

Comments
 (0)