Merge pull request #16 from moheladwy/create-dependabot #30
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: Bash Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install ShellCheck | |
run: sudo apt-get install -y shellcheck | |
- name: Lint setup.sh | |
run: shellcheck setup.sh | |
- name: Lint OCR4Linux.sh | |
run: shellcheck OCR4Linux.sh |