NumPyro Integration #995
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: Run Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| unit-tests: | |
| name: Run Tests | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest", "macos-latest"] | |
| python-version: ["3.11", "3.12", "3.13"] | |
| fail-fast: true | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| # Install uv | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| # Install the dependencies | |
| - name: Check docstrings | |
| run: | | |
| uv sync --extra dev | |
| uv run xdoctest ./gpjax | |
| # Run the unit tests and build the coverage report | |
| - name: Run Tests | |
| run: uv run pytest . -v --cov=./gpjax --cov-report=xml:./coverage.xml | |
| - name: Upload code coverage | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./coverage.xml | |
| name: gpjax | |
| flags: unittests | |
| env_vars: OS,PYTHON |