Skip to content

chore(deps-dev): bump unocss from 0.61.9 to 65.4.3 in /frontend #911

chore(deps-dev): bump unocss from 0.61.9 to 65.4.3 in /frontend

chore(deps-dev): bump unocss from 0.61.9 to 65.4.3 in /frontend #911

Workflow file for this run

name: Formatting and Type Checks
on: ["push", "pull_request"]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
cache-dependency-glob: pyproject.toml
- name: Install dependencies
run: |
uv export --no-hashes | uv pip install -r - basedpyright
- name: Check formatting
run: |
isort . --check --diff
- name: Check imports order
run: |
black . --check --diff
- name: Check typing
run: |
basedpyright