mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* 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>
15 lines
313 B
YAML
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/*'
|