From c6629bacc1c2ebc55ff63af6929aabe989605c9d Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Wed, 4 Feb 2026 12:39:47 -0800 Subject: [PATCH] Integrates into CI for fun --- .github/workflows/ci-backend.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index aca81a97d..dae96aab5 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -128,6 +128,11 @@ jobs: - name: List installed Python dependencies run: | uv pip list + - name: Check typing (pyrefly) + run: | + uv run pyrefly \ + check \ + src/ - name: Cache Mypy uses: actions/cache@v5.0.3 with: @@ -137,7 +142,7 @@ jobs: restore-keys: | ${{ runner.os }}-mypy-py${{ env.DEFAULT_PYTHON }}- ${{ runner.os }}-mypy- - - name: Check typing + - name: Check typing (mypy) run: | uv run mypy \ --show-error-codes \