We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16ee27f commit 6e5d1b4Copy full SHA for 6e5d1b4
.github/workflows/build-and-release.yaml
@@ -89,7 +89,17 @@ jobs:
89
exit 1
90
91
test-go:
92
- needs: [ scan-dependencies ]
+ needs: [
93
+ scan-dependencies,
94
+
95
+ # these take a long time - allow them to fail the PR pipeline, but
96
+ # don't delay the test + build stages.
97
+ # this means that on main push and on tag push, these might fail while the
98
+ # test + build stages go ahead, but the likelihood is small if pull
99
+ # requests require passing checks.
100
+ # scan-codeql,
101
+ # scan-intermediate-image
102
+ ]
103
runs-on: ubuntu-latest
104
steps:
105
- name: Check out code
0 commit comments