neofetch/.travis.yml

24 lines
648 B
YAML
Raw Normal View History

2016-03-26 02:03:25 +01:00
language: bash
2016-03-26 02:13:31 +01:00
sudo: required
2016-03-26 02:03:25 +01:00
2016-12-08 08:50:48 +01:00
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
2016-03-26 04:32:06 +01:00
os:
- linux
- osx
2016-03-27 10:50:09 +02:00
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
2016-03-26 02:03:25 +01:00
script:
2016-11-04 07:49:22 +01:00
- time ./neofetch --ascii --config travis --ascii_distro travis -v
2016-12-08 09:18:06 +01:00
# See this wiki page for why we're disabling these errors.
2016-12-08 10:17:08 +01:00
# https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions
- shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178