diff options
| author | 2026-05-20 13:56:12 +0100 | |
|---|---|---|
| committer | 2026-05-20 13:56:12 +0100 | |
| commit | 5b8bda580414d214f6156abe9ab66963ed6614f0 (patch) | |
| tree | a0f6ac5abf91cef18e742b193acdbcd022349221 /.github/workflows/check.yml | |
| parent | 3ee1769ac0f5618da3d3346ff5dd70c07c11b0fe (diff) | |
| download | dotfiles-5b8bda580414d214f6156abe9ab66963ed6614f0.tar.gz dotfiles-5b8bda580414d214f6156abe9ab66963ed6614f0.tar.bz2 dotfiles-5b8bda580414d214f6156abe9ab66963ed6614f0.zip | |
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.
Diffstat (limited to '.github/workflows/check.yml')
| -rw-r--r-- | .github/workflows/check.yml | 3 |
1 files changed, 3 insertions, 0 deletions
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 |
