travis-ci / travis-yaml

parses, normalizes, validates and serializes your .travis.yml
http://yaml.travis-ci.org/
MIT License
170 stars 66 forks source link

Site suggest failure with no failure #98

Open DonRichards opened 7 years ago

DonRichards commented 7 years ago

This passes on Travis but fails on lint.travis-ci.org

sudo: required
dist: trusty
language: bash
addons:
  apt:
    sources:
    - debian-sid
    packages:
    - shellcheck
before_install:
- echo "Before Install scripts Start"
install:
- echo "Install scripts Starting."
script:
- echo "shell commands Starting"
- bash -c 'shopt -s globstar; shellcheck **/*.{sh,bash}'
after_success:
- echo "PASSED!"
after_failure:
- echo "FAILURE IS ALWAYS AN OPTION"
after_script:
- echo "more shell commands here"
notifications: