Skip to content

cli/test.sh: Ignore shellcheck error #146

cli/test.sh: Ignore shellcheck error

cli/test.sh: Ignore shellcheck error #146

Workflow file for this run

name: shell-presubmit
on:
push:
branches: ['master']
pull_request:
paths: ['**.sh', '.github/workflows/presubmit-shell.yml']
workflow_dispatch: {}
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: shellcheck
run: |
find . -type f -name '*.sh' -print0 | \
xargs -0 shellcheck --shell=sh