Skip to content

Commit 9151776

Browse files
Add .travis.yml with ShellCheck test
1 parent e7eda5c commit 9151776

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
language: generic
2+
3+
git:
4+
depth: 5
5+
6+
matrix:
7+
include:
8+
- env:
9+
- task=shellcheck
10+
script:
11+
- shellcheck -x generator.sh
12+
- env:
13+
- task=shellcheck-dist-sh
14+
script:
15+
- shellcheck dist/ColorEcho.sh
16+
- env:
17+
- task=shellcheck-dist-ksh
18+
script:
19+
- shellcheck dist/ColorEcho.ksh
20+
- env:
21+
- task=shellcheck-dist-bash
22+
script:
23+
- shellcheck dist/ColorEcho.bash
24+

0 commit comments

Comments
 (0)