Update quest images #2752
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
| # SPDX-FileCopyrightText: The Threadbare Authors | |
| # SPDX-License-Identifier: MPL-2.0 | |
| name: Checks | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| # Cancel any ongoing previous run if a PR is updated | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| jobs: | |
| pre-commit: | |
| name: Linting and Formatting | |
| if: ${{ !github.event.repository.fork }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: tox-dev/action-pre-commit-uv@v1 | |
| reuse: | |
| name: Licensing information | |
| if: ${{ !github.event.repository.fork }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| cache-dependency-glob: ".github/workflows/checks.yaml" | |
| - name: Check REUSE compliance | |
| shell: bash | |
| run: | | |
| set -o pipefail | |
| uv run --with reuse reuse lint | tee $GITHUB_STEP_SUMMARY |