91 laplace ggn arguments #347
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: Tests | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- uses: pre-commit/[email protected] | |
tests: | |
name: Run tests for Python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
needs: | |
- pre-commit | |
strategy: | |
matrix: | |
python-version: ['3.10'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dev environment | |
run: | | |
python -m pip install --upgrade pip | |
pip install '.[test]' | |
- name: Run the tests with pytest | |
run: | | |
python -m pytest --cov=posteriors --cov-report term-missing |