add id and name to map configs #81
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 |