Skip to content

Bump astral-sh/setup-uv from 3 to 4 #702

Bump astral-sh/setup-uv from 3 to 4

Bump astral-sh/setup-uv from 3 to 4 #702

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# * is a special character in YAML so you have to quote this string
# Run at 1:00 every day
- cron: 0 1 * * *
jobs:
build:
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Lint
run: |
uv run --extra=dev pre-commit run --all-files --hook-stage pre-commit --verbose
uv run --extra=dev pre-commit run --all-files --hook-stage pre-push --verbose
uv run --extra=dev pre-commit run --all-files --hook-stage manual --verbose
env:
UV_PYTHON: ${{ matrix.python-version }}
# We require a lower coverage for Windows as we do not
# create binaries on Windows.
- id: set-min-coverage
run: |
if [ ${{ runner.os }} == 'Windows' ]; then
echo "min_coverage=60" >> "$GITHUB_OUTPUT"
else
echo "min_coverage=100" >> "$GITHUB_OUTPUT"
fi
shell: bash
- name: Run tests
run: |
# We run tests against "." and not the tests directory as we test the README
# and documentation.
uv run --extra=dev pytest -s -vvv --cov-fail-under=${{ steps.set-min-coverage.outputs.min_coverage }} --cov=src/ --cov=tests . --cov-report=xml
env:
UV_PYTHON: ${{ matrix.python-version }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
if: runner.os != 'Windows'
- uses: pre-commit-ci/[email protected]
# Do not run pre-commit on Windows in order to avoid issues with
# line endings.
# We only need to run the changes from one runner in any case.
if: always()