refactor: Enhanced MD5 source validation for more reliable change det… #22
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: | |
paths: | |
- '**.sh' | |
pull_request: | |
paths: | |
- '**.sh' | |
jobs: | |
shellcheck: | |
name: ShellCheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ShellCheck | |
run: sudo apt-get install -y shellcheck | |
- name: Run ShellCheck | |
run: | | |
shellcheck --severity=warning --enable=all --shell=bash \ | |
$(find . -type f -name "*.sh") |