You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
593 B

8 years ago
8 years ago
8 years ago
  1. language: shell
  2. env:
  3. global:
  4. - SHFMT_URL=https://github.com/mvdan/sh/releases/download/v0.4.0/shfmt_v0.4.0_linux_amd64
  5. addons:
  6. apt:
  7. sources:
  8. - debian-sid # Grab shellcheck from the Debian repo (o_O)
  9. packages:
  10. - shellcheck
  11. script:
  12. - curl -sSL $SHFMT_URL -o ~/shfmt
  13. - chmod +x ~/shfmt
  14. - shellcheck -V
  15. - shellcheck -e SC2021,SC2126,SC2034 **/*.sh && echo "shellcheck OK"
  16. - ~/shfmt -l -w -i 2 . && echo "shfmt OK" || git diff --exit-code || (echo "Run shfmt to fix the formatting issues" && false)
  17. matrix:
  18. fast_finish: true