ghcup/.travis.yml

19 lines
356 B
YAML
Raw Normal View History

2018-09-29 15:25:54 +00:00
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