Add .travis.yml

This commit is contained in:
Julian Ospald 2018-09-29 23:25:54 +08:00
parent cb8cef4c63
commit 12696d7dbd
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
1 changed files with 18 additions and 0 deletions

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 # Grab shellcheck from the Debian repo (o_O)
packages:
- shellcheck
# TODO: also run checkbashisms.pl (currently two instances of non-compliance)
script:
- shellcheck ghcup.sh
matrix:
fast_finish: true