We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e932511 commit 52e2299Copy full SHA for 52e2299
.travis.yml
@@ -1,10 +1,19 @@
1
language: bash
2
before_install:
3
- git clone --depth 1 https://github.com/sstephenson/bats.git
4
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew install gnu-sed; fi
5
-
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
+ brew update;
6
+ brew install gnu-sed;
7
+ brew install shellcheck;
8
+ fi
9
+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
10
+ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty-backports restricted main universe";
11
+ sudo apt-get -y update;
12
+ sudo apt-get -y install shellcheck;
13
14
script:
15
- ./bats/bin/bats test/*.bats
16
+ - shellcheck diff-so-fancy update-deps.sh
17
os:
18
- linux
19
- osx
0 commit comments