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