Skip to content

Commit e682fca

Browse files
committed
disable caching when installing requirements
1 parent 1848e30 commit e682fca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-package-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
python -m pip install --upgrade pip
2626
python -m pip install flake8 pytest
27-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
27+
if [ -f requirements.txt ]; then pip install --no-cache-dir -r requirements.txt; fi
2828
- name: Verify Streamlit app
2929
run: |
3030
timeout 10s streamlit run index.py || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi

0 commit comments

Comments
 (0)