Files
chromebrew/.github/workflows/ShellCheck.yml
Satadru Pramanik, DO, MPH, MEng 6f1d22f52c Adjust ruby buildsystem to use Gem::Version.new to sanitize gem version numbers, adjust activesupport package dependencies. (#10624)
* Adjust ruby buildsystem to use Gem::Version.new to sanitize gem version numbers, adjust activesupport package dependencies.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Have linting workflows fail on warning.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Lint now that we know the checks fail appropriately when they are tripped.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
2024-10-17 11:37:57 -05:00

19 lines
422 B
YAML

---
name: ShellCheck
on: workflow_call
jobs:
shellcheck:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: ShellCheck
uses: reviewdog/action-shellcheck@v1
with:
exclude: './tools/*'
fail_on_error: true
reporter: github-pr-check
reviewdog_flags: '-fail-level=any'