Skip to content

Merge pull request #229 from IGPenguin/feature/compatiblity-fixes #183

Merge pull request #229 from IGPenguin/feature/compatiblity-fixes

Merge pull request #229 from IGPenguin/feature/compatiblity-fixes #183

Workflow file for this run

name: 'Shellcheck'
on: push
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Shellcheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -e SC1090 -e SC2207 -e SC2001 -e SC1091
# SC1090 - non-constant source
# SC2207 - no arrays like this ($())
# SC2001 - replace sed with ${variable//search/replace}
# SC1091 - common_tools was not specified as input (see shellcheck -x)