Skip to content

Commit

Permalink
adds shellcheck shell script CI testing to Travis CI settings file
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Aug 17, 2017
1 parent feeb927 commit bceb38b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
sudo: false
sudo: true
language: python

env:
- VARIANT=source/Hack-Regular.ufo
- VARIANT=source/Hack-Bold.ufo
- VARIANT=source/Hack-Italic.ufo
- VARIANT=source/Hack-BoldItalic.ufo
- SHELL_PATH=build.sh

before_script: pip install ufolint
before_script:
- pip install ufolint
- sudo apt-get -qq update
- sudo apt-get install -y shellcheck

script: "ufolint $VARIANT"
script:
- "ufolint $VARIANT"
- "shellcheck $SHELL_PATH"

notifications:
email: false

0 comments on commit bceb38b

Please sign in to comment.