Skip to content

fix typo in web mercator bounds that was causing issues #152

fix typo in web mercator bounds that was causing issues

fix typo in web mercator bounds that was causing issues #152

Workflow file for this run

on: [push, pull_request]
jobs:
run:
name: Run Planetcantile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup git config
run: |
git config user.name "Andrew Annex's GitHub Actions Bot"
git config user.email "<>"
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install deps
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Run defaults script
run: |
cd src/planetcantile/data && python ./generate.py && cd -
- name: show outputs
run: |
cat ./src/planetcantile/data/*/*.json
git status
- name: run tests
run: |
python -m pytest .