From 3986369cf08b87f83cac6586962ebc6ff55fe344 Mon Sep 17 00:00:00 2001 From: Alex Dewar Date: Thu, 16 Apr 2026 11:46:16 +0100 Subject: [PATCH] Remove unnecessary `mypy` check in CI We don't need to invoke `mypy` manually in the CI run, as `mypy` is already run via pre-commit.ci. Remove it. --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 430717d..4b2c525 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,8 +108,5 @@ jobs: } Write-Host "MUSE2_PATH is set to: $env:MUSE2_PATH" - - name: Run mypy - run: mypy . - - name: Run tests run: pytest