let's try to do some Travis-CI with shellcheck

This commit is contained in:
zertrin 2016-03-25 20:25:05 +01:00
parent 6c63877052
commit 93e9854b98

18
.travis.yml Normal file
View file

@ -0,0 +1,18 @@
language: bash
# Use container-based infrastructure for quicker build start-up
sudo: false
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
script:
- shellcheck duplicity-backup.sh
- shellcheck -e SC2034 duplicity-backup.conf.example
matrix:
fast_finish: true