nerd-fonts/.travis.yml

21 lines
399 B
YAML
Raw Permalink Normal View History

2017-10-04 03:36:51 +02: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)
before-script:
- "sudo apt-get install cabal-install"
- "cabal update"
- "cabal install shellcheck"
2017-10-04 03:36:51 +02:00
script:
- bash -c 'shopt -s globstar; shellcheck --exclude SC2034 **/*.sh'
2017-10-04 03:36:51 +02:00
matrix:
fast_finish: true