Explorar el Código

ci: re-run Go checks for every push on a pull request

If a pull request has changed any Go file, even if the new push doesn't change any,
we should re-run Go checks to make GitHub Checks look consistent.
ᴜɴᴋɴᴡᴏɴ hace 4 años
padre
commit
bb93cabd39
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      .github/workflows/go.yml

+ 3 - 0
.github/workflows/go.yml

@@ -3,6 +3,9 @@ on:
   push:
     paths:
       - '**.go'
+  pull_request:
+    paths:
+      - '**.go'
 env:
   GOPROXY: "https://proxy.golang.org"