This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
Merge pull request #18 from grische/feature/new_ssid_changer #48
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: | |
workflow_dispatch: | |
push: | |
paths: | |
- "**.sh" | |
pull_request: | |
paths: | |
- "**.sh" | |
jobs: | |
shellcheck: | |
name: runner / shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@66c9a47bf02255b250284a82251cb4cadf5043f5 # v1.15.0 | |
with: | |
filter_mode: "file" | |
fail_on_error: true |