Correct github workflow. #66
This file contains hidden or 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: Pyg2p Unit Tests | |
| on: [push] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| max-parallel: 5 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| auto-update-conda: true | |
| python-version: "3.10" | |
| - name: Install python and gcc | |
| shell: bash -el {0} | |
| run: | | |
| conda install -c conda-forge "python=3.10" | |
| conda install -c conda-forge "gcc>=12.1.0" | |
| - name: Install gdal | |
| shell: bash -el {0} | |
| run: | | |
| conda install -c conda-forge "gdal<=3.5.3" eccodes | |
| - name: Install dependencies | |
| shell: bash -el {0} | |
| run: | | |
| pip install -r requirements.txt | |
| pip install . | |
| - name: Workaround for poppler lib issue | |
| shell: bash -el {0} | |
| run: | | |
| conda list | |
| pip install poppler-utils | |
| conda install -c conda-forge 'poppler=>22.10.0' | |
| - name: Check installation | |
| shell: bash -el {0} | |
| run: | | |
| conda list | |
| gdal-config --version | |
| python -c "from osgeo import gdal; print(gdal.__version__)" | |
| - name: Test with pytest | |
| shell: bash -el {0} | |
| run: | | |
| pip install pytest pytest-cov | |
| pytest |