CI: Make the downstream enterprise test a check instead of comments (#59071)

This commit is contained in:
Kevin Minehart
2022-11-24 08:17:12 -06:00
committed by GitHub
parent 76372a240c
commit 45c759eb59
14 changed files with 681 additions and 8 deletions
+10
View File
@@ -0,0 +1,10 @@
package stringutil
func Contains(arr []string, s string) bool {
for _, e := range arr {
if e == s {
return true
}
}
return false
}