chore(deps): bump svelte from 4.2.19 to 5.25.6 #1057
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: python checks | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up python | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: 3.13 | |
| enable-cache: true | |
| cache-dependency-glob: pyproject.toml | |
| - name: Install dependencies | |
| run: | | |
| uv pip install -r pyproject.toml basedpyright isort black | |
| - name: Run isort check | |
| run: | | |
| python -m isort . --check --diff | |
| - name: Run black check | |
| run: | | |
| python -m black . --check --diff | |
| - name: Run Ruff check | |
| run: | | |
| ruff check --output-format github | |
| ruff format --check --diff | |
| - name: Run pyright check | |
| run: | | |
| basedpyright |