Skip to content

add shapely support #15

add shapely support

add shapely support #15

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Get changed files
id: changed_files
uses: tj-actions/changed-files@bab30c2299617f6615ec02a68b9a40d10bd21366 # v45.0.5
with:
files_ignore: "**/migrations/*"
- name: Run pre-commit checks
uses: pre-commit/action@576ff52938d158a24ac7e009dfa94b1455e7df99 # v3.0.1
with:
extra_args: --files ${{ steps.changed_files.outputs.all_changed_files }}