Added ShellCheck GitHub action #1
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, pull_request] | ||
jobs: | ||
# TODO: tmout.sh.j2 | ||
profile.d: | ||
Check failure on line 6 in .github/workflows/shellcheck.yml GitHub Actions / shellcheckInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install ShellCheck | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y shellcheck | ||
- name: Run ShellCheck | ||
run: shellcheck --shell=bash newconfs/profile.d/* |