mirror of
https://github.com/ryantm/nixpkgs-update.git
synced 2024-12-17 16:31:47 +03:00
18 lines
313 B
YAML
18 lines
313 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 **/*.{sh,bash}'
|
||
|
|
||
|
matrix:
|
||
|
fast_finish: true
|