Avoid trying to run the test on Windows
diff --git a/.github/BUILD.bazel b/.github/BUILD.bazel
index 852ba23..f41e477 100644
--- a/.github/BUILD.bazel
+++ b/.github/BUILD.bazel
@@ -12,6 +12,10 @@
     env = {
         "JQ_BIN": "$(JQ_BIN)",
     },
+    target_compatible_with = select({
+        "@platforms//os:windows": ["@platforms//:incompatible"],
+        "//conditions:default": [],
+    }),
     toolchains = ["@jq_toolchains//:resolved_toolchain"],
     deps = ["@bazel_tools//tools/bash/runfiles"],
 )