5 lines
128 B
Bash
Executable file
5 lines
128 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ "$TRAVIS" = "true" ];then
|
|
./mvnw --projects builder,plugin test jacoco:report coveralls:report
|
|
fi
|