Skip to content

Commit b93e0ef

Browse files
committed
comment out cache
1 parent cf4fca0 commit b93e0ef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cicd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ jobs:
7878
uses: actions/setup-python@v5
7979
with:
8080
python-version: ${{ matrix.python-version }}
81-
cache: 'pip'
82-
cache-dependency-path: |
83-
**/setup.py
81+
# cache: 'pip'
82+
# cache-dependency-path: |
83+
# **/setup.py
8484

8585
- name: Lint code
8686
if: ${{ matrix.python-version == 3.11 }}
@@ -98,11 +98,11 @@ jobs:
9898
9999
- name: Install elasticsearch stac-fastapi
100100
run: |
101-
pip install ./stac_fastapi/elasticsearch[dev,server]
101+
pip install --no-cache-dir ./stac_fastapi/elasticsearch[dev,server]
102102
103103
- name: Install opensearch stac-fastapi
104104
run: |
105-
pip install ./stac_fastapi/opensearch[dev,server]
105+
pip install --no-cache-dir ./stac_fastapi/opensearch[dev,server]
106106
107107
- name: Install pytest-timeout
108108
run: |

0 commit comments

Comments
 (0)