chore: disable a failing test on windows
diff --git a/.github/BUILD.bazel b/.github/BUILD.bazel
index 90e82bc..a1374f9 100644
--- a/.github/BUILD.bazel
+++ b/.github/BUILD.bazel
@@ -16,4 +16,10 @@
failure_message = "Please run: bazel run //.github:gen_codeowners",
file1 = ":gen_codeowners",
file2 = "CODEOWNERS",
+ target_compatible_with = select({
+ # produces different line endings on Windows
+ # which makes the diff_test fail
+ "@platforms//os:windows": ["@platforms//:incompatible"],
+ "//conditions:default": [],
+ }),
)