shellcheck.yml 523 B

123456789101112131415161718192021222324252627282930
  1. name: 'ShellCheck'
  2. on:
  3. push:
  4. paths:
  5. - 'compose/bin/**'
  6. branches:
  7. - "master"
  8. pull_request:
  9. paths:
  10. - 'compose/bin/**'
  11. jobs:
  12. shellcheck:
  13. name: shellcheck
  14. runs-on: ubuntu-latest
  15. steps:
  16. - name: Checkout
  17. uses: actions/checkout@v2
  18. - name: Run ShellCheck
  19. uses: ludeeus/action-shellcheck@master
  20. id: check
  21. env:
  22. SHELLCHECK_OPTS: -x -e SC2181 -P compose/bin -P compose/env
  23. with:
  24. check_together: true
  25. scandir: './compose/bin'