fix #219: restruct dataset-types, get rid of barely implemented ContiguousRagged, replaced by Ragged. #447
Workflow file for this run
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: Docs | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| # Allow one concurrent deployment | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| # Build job | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-file: environment.yml | |
| cache-environment: true | |
| post-cleanup: 'all' | |
| init-shell: >- | |
| bash | |
| powershell | |
| create-args: python=3.14 | |
| - name: Install documentation dependencies | |
| run: | | |
| micromamba install -f docs/requirements.txt | |
| - name: Cache cartopy maps | |
| id: cache-cartopy | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.local/share/cartopy | |
| key: cartopy-maps-gshhg-2.3.7 | |
| - name: Download cartopy shapefiles | |
| if: steps.cache-cartopy.outputs.cache-hit != 'true' | |
| run: | | |
| mkdir -p ~/.local/share/cartopy/shapefiles/ | |
| cd ~/.local/share/cartopy/shapefiles/ | |
| curl -L -o gshhg-shp-2.3.7.zip https://github.com/GenericMappingTools/gshhg-gmt/releases/download/2.3.7/gshhg-shp-2.3.7.zip | |
| unzip -o gshhg-shp-2.3.7.zip | |
| mv GSHHS_shp gshhs | |
| rm gshhg-shp-2.3.7.zip | |
| python -c "import cartopy; list(map(cartopy.io.shapereader.gshhs, ('c', 'l', 'i', 'h', 'f')))" | |
| python -c "import cartopy; cartopy.io.shapereader.natural_earth(resolution='110m', category='cultural', name='admin_0_countries')" | |
| - name: Build docs with sphinx | |
| run: | | |
| cd docs | |
| make html | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload artifact | |
| id: deployment | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./docs/build/html | |
| # Deployment job | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| if: github.ref == 'refs/heads/main' | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |