9 lines
155 B
YAML
9 lines
155 B
YAML
language: bash
|
|
|
|
os:
|
|
- linux
|
|
|
|
script:
|
|
- shellcheck -s bash --exclude=SC2034,SC2154 <(awk '/```sh$/{f=1;next}/```/{f=0}f' README.md)
|
|
- ./test.sh
|