This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-26 01:03:25 +00:00
|
|
|
language: bash
|
2016-03-26 01:13:31 +00:00
|
|
|
sudo: required
|
2016-03-26 01:03:25 +00:00
|
|
|
|
2016-03-26 03:32:06 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2016-03-27 09:50:09 +01:00
|
|
|
before_install:
|
2016-12-08 09:23:15 +00:00
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
|
2016-03-27 09:50:09 +01:00
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
|
|
|
|
2016-03-26 01:03:25 +00:00
|
|
|
script:
|
2018-05-04 00:35:28 +01:00
|
|
|
- time ./neofetch --travis -v
|
2019-01-04 19:22:41 +00:00
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -e SC2244 -e SC2243 neofetch; fi
|
2018-05-04 03:01:55 +01:00
|
|
|
# Check for lines longer than 100 chars.
|
2018-06-03 23:41:23 +01:00
|
|
|
- if grep '.\{102\}' neofetch; then (exit 1); else (exit 0); fi
|