Bump the "dependencies" group with 2 updates across multiple ecosystems #590
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_call: | |
| inputs: | |
| attest-package: | |
| description: "Create GitHub provenance attestation for the package." | |
| default: "false" | |
| type: string | |
| outputs: | |
| artifact-name: | |
| description: "Name of the uploaded artifact; use for artifact retrieval." | |
| value: ${{ jobs.package.outputs.artifact-name }} | |
| jobs: | |
| pre-commit: | |
| name: Pre-commit checks | |
| uses: beeware/.github/.github/workflows/pre-commit-run.yml@main | |
| with: | |
| pre-commit-source: "--group pre-commit" | |
| towncrier: | |
| name: Check towncrier | |
| uses: beeware/.github/.github/workflows/towncrier-run.yml@main | |
| with: | |
| tox-source: "--group tox-uv" | |
| package: | |
| name: Package Colosseum | |
| permissions: | |
| id-token: write | |
| contents: read | |
| attestations: write | |
| uses: beeware/.github/.github/workflows/python-package-create.yml@main | |
| with: | |
| attest: ${{ inputs.attest-package }} | |
| unit-tests: | |
| name: Python compatibility test | |
| needs: [ pre-commit, towncrier, package ] | |
| runs-on: ubuntu-latest | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14", "3.15" ] | |
| include: | |
| # Builds must pass by default | |
| - experimental: false | |
| # Development Python can fail without failing the entire job | |
| - python-version: "3.14" | |
| experimental: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| allow-prereleases: true | |
| - name: Get Packages | |
| uses: actions/download-artifact@v8.0.0 | |
| with: | |
| name: ${{ needs.package.outputs.artifact-name }} | |
| path: dist | |
| - name: Install Tox | |
| run: python -m pip install --group tox-uv | |
| - name: Test | |
| run: tox -e py --installpkg dist/colosseum-*.whl |