hyfetch/.travis.yml

25 lines
595 B
YAML
Raw Normal View History

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