build(deps): bump soupsieve from 2.8.3 to 2.8.4 #36
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: 2026 Arcangelo Massari <arcangelo.massari@unibo.it> | |
| # | |
| # SPDX-License-Identifier: ISC | |
| name: Pyright | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pyright: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Install UV | |
| uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 | |
| with: | |
| enable-cache: true | |
| python-version: "3.13" | |
| - name: Install Python | |
| run: uv python install | |
| - name: Install project dependencies | |
| run: uv sync --locked --all-extras --dev | |
| - name: Run Pyright | |
| run: uv run pyright |