Skip to content

Introduce a switch to select yum or dnf to be used for yum-based distros #2

Introduce a switch to select yum or dnf to be used for yum-based distros

Introduce a switch to select yum or dnf to be used for yum-based distros #2

Workflow file for this run

name: shellcheck
on: [pull_request]
permissions:
contents: read
id-token: write
issues: write
pull-requests: write
jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review # Change reporter.
path: "." # Optional.
#pattern: "*.sh" # Optional.
exclude: "./.git/*" # Optional.
check_all_files_with_shebangs: "true" # Optional.
fail_on_error: "true"
shellcheck_flags: --severity=warning