Skip to content

Commit ba11623

Browse files
committed
add cache back
1 parent 2c2bd42 commit ba11623

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/cicd.yml

Lines changed: 6 additions & 6 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 }}
@@ -94,15 +94,15 @@ jobs:
9494
9595
- name: Install core library stac-fastapi
9696
run: |
97-
pip install --no-cache-dir --upgrade ./stac_fastapi/core
97+
pip install ./stac_fastapi/core
9898
9999
- name: Install elasticsearch stac-fastapi
100100
run: |
101-
pip install --no-cache-dir ./stac_fastapi/elasticsearch[dev,server]
101+
pip install ./stac_fastapi/elasticsearch[dev,server]
102102
103103
- name: Install opensearch stac-fastapi
104104
run: |
105-
pip install --no-cache-dir ./stac_fastapi/opensearch[dev,server]
105+
pip install ./stac_fastapi/opensearch[dev,server]
106106
107107
- name: Install pytest-timeout
108108
run: |

0 commit comments

Comments
 (0)