mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-01 00:10:12 +01:00
10 lines
191 B
Bash
10 lines
191 B
Bash
|
cd Plan
|
||
|
|
||
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||
|
mvn test
|
||
|
fi
|
||
|
|
||
|
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
||
|
mvn org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar
|
||
|
fi
|