-
Notifications
You must be signed in to change notification settings - Fork 32
43 lines (34 loc) · 1.15 KB
/
shellcheck.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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@v4
# 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