features/.github/workflows/linter-automated.yaml

21 lines
552 B
YAML
Raw Normal View History

2022-06-03 17:54:31 +03:00
name: "(CI) Shell Script Linter"
on:
push:
branches:
- main
pull_request:
jobs:
shellchecker:
runs-on: ubuntu-latest
2022-06-03 17:54:31 +03:00
if: "!contains(github.event.head_commit.message, 'no-ci') && !contains(github.event.head_commit.message, 'CI ignore')"
steps:
- uses: actions/checkout@v2
- name: Shell Linter
uses: azohra/shell-linter@v0.6.0
with:
path: "src/**/*.sh"
2022-06-13 23:11:10 +03:00
severity: "error" # [style, info, warning, error]
env:
SHELLCHECK_OPTS: -e SC2072 # Acceptable use of decimal comparison