From e697f960c8b2f68d1cbb5281aefc5590987a682c Mon Sep 17 00:00:00 2001 From: Nahor Date: Sun, 10 May 2026 12:49:11 -0700 Subject: [PATCH] windows build: disable lint checks There is already a GitHub workflow doing lint checks so it is redundant and wastes time (4+ min). Moreover, other platforms do not do it, so when it fails, it gives the appearance that there is a Windows specific build issue beyond linting. Closes #12740 --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 24bc4b06d..bf626b2ee 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -170,5 +170,7 @@ jobs: run: | cargo build - name: tests + env: + FISH_CHECK_LINT: false run: | cargo xtask check