CI #4254
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 * * * | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| uv-resolution: [highest, lowest-direct] | |
| platform: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: '**/pyproject.toml' | |
| - 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 }} | |
| UV_RESOLUTION: ${{ matrix.uv-resolution }} | |
| - 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 }} | |
| - uses: pre-commit-ci/lite-action@v1.1.0 | |
| if: always() | |
| completion-ci: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| if: always() # Run even if one matrix job fails | |
| steps: | |
| - name: Check matrix job status | |
| run: |- | |
| if ! ${{ needs.build.result == 'success' }}; then | |
| echo "One or more matrix jobs failed" | |
| exit 1 | |
| fi |