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.

30 lines
684 B

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