fix: Fix edge tile rendering in MultiCOGLayer #891
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: test-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| submodules: true | |
| - uses: prefix-dev/setup-pixi@a0af7a228712d6121d37aba47adf55c1332c9c2e # v0.9.4 | |
| with: | |
| pixi-version: v0.63.2 | |
| working-directory: ./fixtures/geotiff-test-data | |
| # NPY fixtures are generated from the GeoTIFF fixtures on demand with | |
| # rasterio | |
| - name: Create npy fixtures | |
| working-directory: ./fixtures/geotiff-test-data | |
| run: pixi run generate-npy | |
| - uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5 | |
| - run: | | |
| pnpm install | |
| pnpm build | |
| pnpm test | |
| pnpm publint | |
| Lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: biomejs/setup-biome@4c91541eaada48f67d7dbd7833600ce162b68f51 # v2 | |
| - run: biome ci . |