Skip to content

Allow writing either GeoParquet 1.0 or GeoParquet 1.1 schema metadata #190

Allow writing either GeoParquet 1.0 or GeoParquet 1.1 schema metadata

Allow writing either GeoParquet 1.0 or GeoParquet 1.1 schema metadata #190

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install -e .[pgstac,pc,test]
- name: Run tests
run: pytest tests -v
- name: Lint
run: pre-commit run --all-files
- name: Type check
run: mypy .