Merge pull request #228 from luispinho/feature/android-lock-unlock #178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |