Skip to content

Fixed error in testing action #3

Fixed error in testing action

Fixed error in testing action #3

Workflow file for this run

name: "CI - Shell Script Linter"
on:
workflow_dispatch:
inputs:
path:
description: "Path to the shell scripts to lint"
required: true
default: "src/**/*.sh"
severity:
description: "Minimum Severity (style, info, warning, error)"
required: true
default: "style"
push:
branches:
- main
pull_request:
jobs:
shellchecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Shell Linter
uses: azohra/[email protected]
with:
path: "src/**/*.sh"
severity: "error"
env:
SHELLCHECK_OPTS: -e SC2072