shellcheck.yml 450 B

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