bug fixes #27
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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| release: | |
| types: | |
| - published | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| # Note that we do an editable install so that coverage can look at the files in src/ | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install . | |
| python3 -m pip install pytest | |
| python3 -m pip install pytest-cov | |
| - name: Test with pytest | |
| run: | | |
| python3 -m pytest --cov=static_interpolation/ |