2019-11-23 22:22:59 +00:00
|
|
|
# Tests
|
|
|
|
# Verify the install script
|
2017-12-28 01:31:13 -05:00
|
|
|
|
2019-11-23 22:22:59 +00:00
|
|
|
os: linux
|
|
|
|
dist: bionic
|
2019-12-18 21:58:42 +00:00
|
|
|
language: shell
|
2017-12-28 01:31:13 -05:00
|
|
|
|
|
|
|
git:
|
|
|
|
depth: 3
|
2019-11-23 22:22:59 +00:00
|
|
|
quiet: true
|
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
2019-12-18 21:11:06 +00:00
|
|
|
# - master
|
2019-11-23 22:22:59 +00:00
|
|
|
- themify
|
|
|
|
|
2019-12-18 21:58:42 +00:00
|
|
|
before_install:
|
2019-12-18 22:23:11 +00:00
|
|
|
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu bionic-backports bionic-proposed restricted main multiverse universe"
|
2019-12-18 21:58:42 +00:00
|
|
|
- sudo apt-get update -qq -y
|
2019-12-18 22:34:29 +00:00
|
|
|
# nano version <= 4.6 (2019/12/18 = 2.9.3)
|
|
|
|
- sudo apt-get install -qq -y nano=\*
|
|
|
|
# shellcheck version >= 0.6.0 (2019/12/18 = 0.6.0)
|
|
|
|
- sudo apt-get install -qq -y shellcheck=\*
|
2019-12-18 21:11:06 +00:00
|
|
|
|
2019-12-18 22:34:29 +00:00
|
|
|
script: ./tests.sh
|