Skip to content

Merge pull request #405 from T0biii/add-bump-modules #43

Merge pull request #405 from T0biii/add-bump-modules

Merge pull request #405 from T0biii/add-bump-modules #43

Workflow file for this run

---
name: Shell Linting
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches:
- stable
- next
paths:
- '**.sh'
pull_request:
paths:
- '**.sh'
jobs:
shellcheck:
name: runner / shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: shellcheck
# Make sure the action is pinned to a commit, as all reviewdog repos
# have hundreds of contributors with write access (breaks easy/often)
uses: reviewdog/action-shellcheck@72365a51bf6476fe952a117c3ff703eb7775e40a # v1.20.0
with:
filter_mode: "file"
fail_on_error: true