Move scripts around & refactor existing ones #124
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: | |
pull_request: | |
paths: | |
- 'core/tabs/**/*.sh' | |
workflow_dispatch: | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch origin ${{ github.base_ref }} | |
- name: Download and set up shellcheck | |
run : | | |
wget https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz | |
tar -xf shellcheck-v0.10.0.linux.x86_64.tar.xz | |
cd shellcheck-v0.10.0 | |
chmod +x shellcheck | |
- name: Run shellcheck | |
run: | | |
for file in $(git diff --name-only origin/${{ github.base_ref }} HEAD core/tabs); do | |
if [[ "$file" == *.sh ]] && [[ -f "$file" ]]; then | |
./shellcheck-v0.10.0/shellcheck -S error "$file" | |
fi | |
done |