change all Jaxenstein references to JAXenstein #5
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Run tests | |
| run: JAX_PLATFORMS=cpu uv run pytest | |
| - name: Build package | |
| run: uv build | |
| - name: Smoke test package imports | |
| run: | | |
| uv run python -c "import jaxenstein; print(jaxenstein.JAXENSTEIN_ENV_IDS)" | |
| uv run python scripts/convert_dmlab_map.py --help |