Skip to content

Commit

Permalink
🌱 Add Dart and Flutter CI systems to CI tests check. (#1548)
Browse files Browse the repository at this point in the history
* Add Dart and Flutter CI systems to CI tests check.

The current check is looking at the github checks data to identify
whether a given PR ran tests. Flutter and Dart repos are failing the
check becuase their systems are not recognized as CI Systems.

Bug: #1547

* Format file.
  • Loading branch information
godofredoc authored Jan 28, 2022
1 parent 40a9d48 commit a69e1d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions checks/ci_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ func isTest(s string) bool {
for _, pattern := range []string{
"appveyor", "buildkite", "circleci", "e2e", "github-actions", "jenkins",
"mergeable", "packit-as-a-service", "semaphoreci", "test", "travis-ci",
"flutter-dashboard", "Cirrus CI",
} {
if strings.Contains(l, pattern) {
return true
Expand Down

0 comments on commit a69e1d9

Please sign in to comment.