mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-18 00:25:29 +01:00
11 lines
176 B
Bash
11 lines
176 B
Bash
cd Plan
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
|
gradle test --info
|
|
fi
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
|
gradle test --info
|
|
gradle sonarqube
|
|
fi
|