BUG FIX: rsc reset
did not remove all internal files
#411
This file contains hidden or 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
on: [push, pull_request] | |
name: shellcheck | |
jobs: | |
checks: | |
if: "! contains(github.event.head_commit.message, '[ci skip]')" | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
name: shellcheck | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y shellcheck | |
shellcheck --version | |
curl -L -O https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz | |
tar Jxf shellcheck-v0.10.0.linux.x86_64.tar.xz | |
mv shellcheck-v0.10.0/shellcheck bin | |
PATH="bin:$PATH" shellcheck --version | |
- name: ShellCheck | |
run: | | |
PATH="bin:$PATH" make shellcheck |