From 5b8bda580414d214f6156abe9ab66963ed6614f0 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 20 May 2026 13:56:12 +0100 Subject: ci: install basedpyright so just doctor passes The doctor recipe checks for basedpyright (used by 'just lint' for Python type-checking), but the CI workflow wasn't installing it, causing every run since the recipe was added to fail at the doctor step. Install it via pipx like ruff. --- .github/workflows/check.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 9c70f04..1ba15e6 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -22,6 +22,9 @@ jobs: - name: Install ruff run: pipx install ruff + - name: Install basedpyright + run: pipx install basedpyright + - name: Install prettier run: npm install -g prettier@3 -- cgit v1.3.1