We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0bae72 commit ef0e891Copy full SHA for ef0e891
.github/workflows/update_conferences.yaml
@@ -36,11 +36,16 @@ jobs:
36
with:
37
python-version: "3.13"
38
39
- - uses: actions/setup-python@v5
+ - name: Cache pip
40
+ uses: actions/cache@v4
41
- cache: 'pip'
42
- cache-dependency-path: |
43
- miner/requirements.txt
+ path: ~/.cache/pip
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
44
+ restore-keys: |
45
+ ${{ runner.os }}-pip-
46
+
47
+ - name: Install dependencies
48
+ run: pip install -r miner/requirements.txt
49
50
- name: Mine conferences from Researchr
51
run: python miner/get_confs_from_researchr.py
0 commit comments