chore(deps-dev): Bump strict-kwargs from 2026.8.24 to 2026.8.28.post1 #5103
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: 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 * * * | |
| permissions: {} | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| python-version: ['3.11', '3.12', '3.13', '3.14'] | |
| uv-resolution: [highest, lowest-direct] | |
| platform: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v10.0.1 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: '**/pyproject.toml' | |
| - name: Freeze for debugging | |
| run: | | |
| uv pip freeze | |
| - name: Build sample | |
| run: | | |
| uv run --extra=dev sphinx-build -W -b html sample/source sample/build | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| UV_RESOLUTION: ${{ matrix.uv-resolution }} | |
| - name: Build sample parallel | |
| run: | | |
| uv run --extra=dev sphinx-build -j 2 -W -b html sample/source sample/build | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| UV_RESOLUTION: ${{ matrix.uv-resolution }} | |
| - name: Run tests | |
| run: | | |
| uv run --extra=dev pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| UV_RESOLUTION: ${{ matrix.uv-resolution }} | |
| completion-ci: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| if: always() | |
| steps: | |
| - name: Check matrix job status | |
| run: |- | |
| if ! ${{ needs.build.result == 'success' }}; then | |
| echo "One or more matrix jobs failed" | |
| exit 1 | |
| fi |