Skip to content

Commit

Permalink
enable Travis CI
Browse files Browse the repository at this point in the history
This just does `shellcheck`
  • Loading branch information
miabbott authored and cgwalters committed Nov 10, 2018
1 parent 3e4e24a commit 67771f6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sudo: required

language: sh

services:
- docker

before_script:
- docker pull docker.io/koalaman/shellcheck

script:
# shellcheck validate
- docker run -v "$PWD:/mnt:ro" docker.io/koalaman/shellcheck -x $(find . -path ./mantle -prune -and -path ./ostree-releng-scripts -prune -o -type f -exec grep -l '^#!.*bash' {} \;)

0 comments on commit 67771f6

Please sign in to comment.