Skip to content

shapely and geopandas improvements #9

shapely and geopandas improvements

shapely and geopandas improvements #9

Workflow file for this run

name: tests
on:
pull_request:
paths-ignore:
- ".vscode/**"
- ".pre-commit-config.yaml"
- "*.md"
push:
branches: [main]
paths-ignore:
- ".vscode/**"
- ".pre-commit-config.yaml"
- "*.md"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements-tests.txt
- name: Lint with ruff
run: python run.py ruff-check
- name: Format with ruff
run: python run.py ruff-format
- name: Run the test suite
run: python run.py pytest
- name: Run mypy on the tests and on the stubs
run: python run.py mypy
- name: Run pyright on the tests and on the stubs
run: python run.py pyright
- name: Run stubtest on the the stubs
run: python run.py stubtest