DRAFT: check headers for firmware version #52
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Shell Linting | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
push: | |
branches: | |
- stable | |
- next | |
paths-ignore: | |
- '.github/workflows/**' | |
pull_request: | |
paths-ignore: | |
- '.github/workflows/**' | |
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@96fa305c16b0f9cc9b093af22dcd09de1c8f1c2d # v1.19.0 | |
with: | |
filter_mode: "file" | |
fail_on_error: true | |
check_all_files_with_shebangs: true |