mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-21 17:27:13 +01:00
21 lines
390 B
YAML
21 lines
390 B
YAML
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
|
|
|
|
script:
|
|
- bash -c 'shopt -s globstar; shellcheck **/bash*'
|
|
- bash -c 'shopt -s globstar; shellcheck **/*.sh'
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
notifications:
|
|
email: false |