No matter what I write to .travis.yml
Travis CI always executes ./gradlew assemble
. I would like to run ./gradlew test
instead.
Contents of my .travis.yml
:
language: java
script:
- ./gradlew test
Feel free to fix my failed build: https://github.com/RadoBuransky/scala-struct
The script ./gradle assemble
is run as part of the install
section of your build, it's the default.
If you want to skip this step, you can override it like so:
install: true
Docs: https://docs.travis-ci.com/user/customizing-the-build/#Skipping-the-Installation-Step
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With