Skip to content

[Fix] MaaS bbox coordinates, improve parse() return type, and update examples #33

[Fix] MaaS bbox coordinates, improve parse() return type, and update examples

[Fix] MaaS bbox coordinates, improve parse() return type, and update examples #33

Workflow file for this run

name: Pre-commit Checks
on:
push:
branches: [main, master, develop]
pull_request:
branches: [main, master, develop]
jobs:
pre-commit:
name: Run Pre-commit Hooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Cache pre-commit environments
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: |
pre-commit-
- name: Run pre-commit
run: pre-commit run -a --show-diff-on-failure