mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
11 lines
370 B
YAML
11 lines
370 B
YAML
language: bash
|
|
|
|
install:
|
|
# Install a custom version of shellcheck instead of Travis CI's default
|
|
- scversion=latest
|
|
- wget "https://storage.googleapis.com/shellcheck/shellcheck-${scversion}.linux.x86_64.tar.xz"
|
|
- tar --xz -xvf "shellcheck-${scversion}.linux.x86_64.tar.xz"
|
|
- shellcheck() { "shellcheck-${scversion}/shellcheck" "$@"; }
|
|
|
|
script: shellcheck kiss
|