-
-
Notifications
You must be signed in to change notification settings - Fork 7
23 lines (22 loc) · 714 Bytes
/
sh-format.yml
File metadata and controls
23 lines (22 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: sh-format
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
sh-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run the sh-checker
uses: luizm/action-sh-checker@master
env:
SHELLCHECK_OPTS: -e SC1004 # exclude some shellcheck warnings.
SHFMT_OPTS: -s -ln bash -i 4 -ci # arguments to shfmt.
with:
sh_checker_checkbashisms_enable: false
sh_checker_exclude: OLD LEGACY ring_loadables/OLD