-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from thomasmerz/add_github_action
✨ add a fancy GitHub Action for 'shellcheck'
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Shellcheck Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
# Run workflow on every push | ||
- '**' # matches every branch | ||
|
||
pull_request: | ||
branches: | ||
# Run workflow on every push | ||
- '**' # matches every branch | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Shellcheck Lint | ||
|
||
# This job runs on Linux | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Required to access files of this repository | ||
- uses: actions/checkout@v2 | ||
|
||
# Download Shellcheck and add it to the workflow path | ||
- name: Download Shellcheck | ||
run: | | ||
wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv | ||
chmod +x shellcheck-stable/shellcheck | ||
# Verify that Shellcheck can be executed | ||
- name: Check Shellcheck Version | ||
run: | | ||
shellcheck-stable/shellcheck --version | ||
# Run Shellcheck on repository | ||
- name: Run Shellcheck | ||
run: | | ||
set +e | ||
shellcheck-stable/shellcheck --color=always --severity=warning --exclude=SC1090,SC1091 pihole_adlist_tool | ||