Files
chromebrew/.github/workflows/ShellCheck.yml
Satadru Pramanik, DO, MPH, MEng 11b197477d Fix architecture-based early unit test exit logic, update mold => 2.34.1 to fix arm issues (#10617)
* Fix architecture-based early unit test exit logic.

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

* Add mold binaries

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

* Refactor unit test again.

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

* Remove runner_check from unit tests.

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

* lint yaml

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

* Update workflow actions.

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

* Fix action tag usage.

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

* Add fail_on_error to markdownlint unit test.

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

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
2024-10-16 14:36:59 -05:00

15 lines
313 B
YAML

---
name: ShellCheck
on: workflow_call
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ShellCheck
uses: reviewdog/action-shellcheck@v1
with:
reporter: github-pr-review
fail_on_error: true
exclude: './tools/*'