Skip to content

Commit

Permalink
Added GDAL to GitHub workflow #129
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Nov 27, 2021
1 parent bdcf591 commit ae3c71e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/docs.yml
Expand Up @@ -11,9 +11,16 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
- name: Install GDAL
run: |
python -m pip install --upgrade pip
pip install --find-links=https://girder.github.io/large_image_wheels --no-cache GDAL
- name: Test GDAL installation
run: |
python -c "from osgeo import gdal"
gdalinfo --version
- name: Install dependencies
run: |
pip install --no-cache-dir Cython
pip install codespell -r requirements.txt
pip install .
Expand Down

0 comments on commit ae3c71e

Please sign in to comment.