refactor: switch to standard logging and update JAX version constraints #4
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: CodSpeed Benchmarks | |
| on: | |
| push: | |
| branches: [ main,develop ] | |
| pull_request: | |
| jobs: | |
| benchmarks: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| activate-environment: true | |
| - name: Set up Python | |
| run: uv python install 3.12 | |
| - name: Install Dependencies | |
| run: | | |
| uv pip install -e .[dev] | |
| - name: Run Benchmarks | |
| uses: CodSpeedHQ/action@v4 | |
| with: | |
| mode: simulation | |
| run: uv run pytest tests/benchmarks/ --codspeed |