I read this:
By default, Travis CI will use
sbt ++$TRAVIS_SCALA_VERSION test
to run your test suite. This can be overridden as described in the general build configuration guide.
But that link gives kilobytes and kilobytes of text that I don't grok.
In two sentences; how to make Travis CI use the following instead:
sbt ++$TRAVIS_SCALA_VERSION test assembly
?
One has to simply add a
script
section to.travis.yml
, e.g.