Use C_0 and C_1 parameters in the Lorentz model #57
Workflow file for this run
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: pytest | |
| on: | |
| push: | |
| branches: | |
| # Run tests for change on the main branch ... | |
| - main | |
| tags-ignore: | |
| # ... but not for tags (avoids duplicate work). | |
| - '**' | |
| paths: | |
| # ... and only if relevant files have changed. | |
| - src/** | |
| - tests/** | |
| - pyproject.toml | |
| - .github/requirements-old.txt | |
| - .github/workflows/pytest.yaml | |
| pull_request: | |
| # Run tests on pull requests .. | |
| paths: | |
| # ... and only if relevant files have changed. | |
| - src/** | |
| - tests/** | |
| - pyproject.toml | |
| - .github/requirements-old.txt | |
| - .github/workflows/pytest.yaml | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.10", "3.14"] | |
| runs-on: ${{ matrix.os }} | |
| 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 oldest versions of supported dependencies | |
| if: ${{ matrix.python-version == '3.10'}} | |
| run: pip install -r .github/requirements-old.txt | |
| - name: Install package with test dependencies | |
| run: pip install -e .[tests] | |
| - name: Run pytest | |
| run: pytest -vv |