1
0
Fork 0
mirror of https://github.com/matomo-org/matomo-icons.git synced 2024-09-19 17:03:45 +02:00

add travis (#8)

* check bash script with shellcheck and travis

* only check scripts in root directory
This commit is contained in:
Lukas Winkler 2017-04-24 17:48:10 +02:00 committed by GitHub
parent 1e2d73fb5b
commit a4e4cba091

17
.travis.yml Normal file
View file

@ -0,0 +1,17 @@
language: bash
# Use container-based infrastructure for quicker build start-up
sudo: false
addons:
apt:
sources:
- debian-sid # Grab shellcheck from the Debian repo (o_O)
packages:
- shellcheck
script:
- 'shellcheck *.sh'
matrix:
fast_finish: true