Merge pull request #47 from vil02/dependabot/docker/gitpod/workspace-… #152
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: check_shell_scripts | |
'on': | |
workflow_dispatch: | |
push: | |
jobs: | |
run_shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install shellcheck | |
run: | | |
sudo apt-get install shellcheck | |
- name: display shellcheck version | |
run: | | |
shellcheck --version | |
- name: run check_shell_scripts | |
run: | | |
./check_shell_scripts.sh | |
... |