Skip to content

X

X #103

Workflow file for this run

name: bashLint
on: [push, pull_request]
jobs:
sh-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run the sh-checker
uses: luizm/action-sh-checker@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SHELLCHECK_OPTS: -e SC1004 # exclude some shellcheck warnings.
SHFMT_OPTS: -s -w -i 2 # arguments to shfmt.
with:
sh_checker_shfmt_disable: false
sh_checker_shellcheck_disable: true