GeoParquet: Renamed Parquet metadata key from fiboa to collection
#230
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: Run Tests | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '>=3.9' | |
| - uses: actions/checkout@v4 | |
| - name: Install pipenv | |
| run: | | |
| pip install pipenv | |
| pipenv install | |
| - run: pipenv run test-docs | |
| schema: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '>=3.9' | |
| - uses: actions/checkout@v4 | |
| - name: Install pipenv | |
| run: | | |
| pip install pipenv | |
| pipenv install | |
| - run: pipenv run test-schema | |
| examples: | |
| runs-on: ubuntu-latest | |
| needs: schema | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '>=3.9' | |
| - uses: actions/checkout@v4 | |
| - name: Install pipenv | |
| run: | | |
| pip install pipenv | |
| pipenv install | |
| - run: pipenv run test-geojson-features | |
| - run: pipenv run test-geojson-collection | |
| - run: pipenv run test-geoparquet |