Skip to content

Commit

Permalink
Add extra check to run travis check scripts (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
geshuming authored and alexwxh committed Oct 21, 2019
1 parent 198d489 commit 74d235d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ tasks.coveralls {
onlyIf { System.env.'CI' }
}

task extrachecks(type: Exec) {
commandLine 'bash', './config/travis/run-checks.sh'
}

tasks.check {
dependsOn extrachecks
}

test {
testLogging {
events TestLogEvent.FAILED, TestLogEvent.SKIPPED
Expand Down

0 comments on commit 74d235d

Please sign in to comment.