chore(deps): refresh uv lockfile #25
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: Python Tests & Coverage | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.11'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Add path to PYTHONPATH | |
| run: | | |
| echo "PYTHONPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install uv | |
| uv sync --dev | |
| - name: Run tests with coverage | |
| run: | | |
| uv run coverage run --source=backpack -m pytest | |
| uv run coverage report -m --fail-under=70 | |
| uv run coverage xml | |
| - name: Upload coverage.xml | |
| if: ${{ matrix.python-version == '3.11' }} | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: upload coverage | |
| path: ${{ github.workspace }}/coverage.xml | |
| if-no-files-found: warn | |
| # upload coverage.xml to codecov | |
| - name: Upload coverage.xml to codecov | |
| if: ${{ matrix.python-version == '3.11' }} | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |