- Defaults for each language
language: minimal
before_install:
- echo "Before install"
install:
- echo "Install"
before_script:
- echo "Before the script phase"
script:
- echo "The main task"
after_script:
- echo "After the script phase."
- echo $TRAVIS_TEST_RESULT
after_success:
- echo "After success"
after_failure:
- echo "After failure"
$ echo "Before install"
$ echo "Install"
$ echo "Before the script phase"
$ echo "The main task"
$ echo "After success"
$ echo "After the script phase."
- Add a
- ls qqrq
to the steps to see how we get the "After failure" message.