mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-02-24 13:30:02 +08:00
21 lines
547 B
YAML
21 lines
547 B
YAML
on: [workflow_call]
|
|
name: "Check"
|
|
permissions: {}
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Run ShellCheck
|
|
uses: luizm/action-sh-checker@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SHELLCHECK_OPTS: -x -e SC2001 -e SC2002 -e SC2223 -e SC2034 -e SC2064
|
|
SHFMT_OPTS: -s
|
|
with:
|
|
sh_checker_comment: true
|
|
sh_checker_shfmt_disable: true
|
|
sh_checker_checkbashisms_enable: false
|