Fix image collection vis bug (#1953) #1028
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install GDAL | |
run: | | |
python -m pip install --upgrade pip | |
pip install --find-links=https://girder.github.io/large_image_wheels --no-cache GDAL pyproj | |
- name: Test GDAL installation | |
run: | | |
python -c "from osgeo import gdal" | |
gdalinfo --version | |
- name: Install libgeos | |
run: sudo apt -y install libgeos-dev | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --user --no-cache-dir Cython | |
pip install .[all] | |
- name: LOAD EE CREDENTIALS | |
run: python ./.github/ee_token.py | |
env: | |
EARTHENGINE_TOKEN: ${{ secrets.EARTHENGINE_TOKEN }} | |
- name: GEEMAP-TEST | |
run: | | |
python -m unittest discover tests/ | |
- run: pip install -r requirements_docs.txt | |
- run: cp -R examples/data docs/data | |
- run: mkdocs gh-deploy --force | |
env: | |
USE_FOLIUM: ${{ secrets.USE_FOLIUM }} | |
USE_MKDOCS: ${{ secrets.USE_MKDOCS }} |