1 parent d8e82e9 commit bb25116Copy full SHA for bb25116
1 file changed
.github/workflows/fetch-and-regenerate-lists.yml
@@ -23,12 +23,15 @@ jobs:
23
uses: actions/setup-python@v7
24
with:
25
python-version: "3.14"
26
- cache: "pip"
+ # cache: "pip"
27
check-latest: false
28
- name: Install dependencies
29
run: |
30
- # python -m pip install --upgrade pip
31
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ if [ -f requirements.txt ]; then
+ python -m pip install -r requirements.txt --quiet
32
+ else
33
+ echo "No requirements.txt, skipping."
34
+ fi
35
- name: Update external sources
36
37
python "./scripts/import_from_wiki_gg.py"
0 commit comments