fix bbox (chore 742a813ae55043098b77b72016c749871a18d315) #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '[test] check maps precompmesh' | |
on: | |
push: | |
paths: | |
- 'maps/**.json' | |
jobs: | |
check_maps_precompmesh: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install requirements | |
run: | | |
pip install -U pip | |
pip install -r _ci/requirements.txt | |
- name: Check precomputed mesh | |
run: python _ci/check_precompmesh.py |