Fix bug in pgstac_to_arrow not passing tmpdir (#118) #329
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: | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Sync | |
| run: uv sync --all-extras | |
| - name: Pre-commit | |
| run: uv run pre-commit run --all-files | |
| - name: Lint | |
| run: scripts/lint | |
| - name: Test | |
| run: uv run pytest tests -v | |
| - name: Check docs | |
| run: uv run mkdocs build --strict | |
| - name: Check jsonschema | |
| run: check-jsonschema --schemafile spec/json-schema/metadata.json spec/example-metadata.json |