From a667068f8d22e0453847652dfa129e24338a5591 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 27 Mar 2026 20:37:07 -0700 Subject: [PATCH] ci: add Windows Bazel clippy lane --- .github/workflows/bazel.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index afabdb4314..2636213af9 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -103,11 +103,15 @@ jobs: matrix: include: # Keep Linux lint coverage on x64 and add the arm64 macOS path that - # the Bazel test job already exercises. + # the Bazel test job already exercises. Add Windows gnullvm as well + # so PRs get Bazel-native lint signal on the same Windows toolchain + # that the Bazel test job uses. - os: ubuntu-24.04 target: x86_64-unknown-linux-gnu - os: macos-15-xlarge target: aarch64-apple-darwin + - os: windows-latest + target: x86_64-pc-windows-gnullvm runs-on: ${{ matrix.os }} name: Bazel clippy on ${{ matrix.os }} for ${{ matrix.target }}