let's try to do some Travis-CI with shellcheck
This commit is contained in:
parent
6c63877052
commit
93e9854b98
1 changed files with 18 additions and 0 deletions
18
.travis.yml
Normal file
18
.travis.yml
Normal 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
|
||||
Loading…
Reference in a new issue