From 93e9854b98a70954e7d04f9986d67159a0510b2e Mon Sep 17 00:00:00 2001 From: zertrin Date: Fri, 25 Mar 2016 20:25:05 +0100 Subject: [PATCH] let's try to do some Travis-CI with shellcheck --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..60ea2db --- /dev/null +++ b/.travis.yml @@ -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