mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
13 lines
246 B
YAML
13 lines
246 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:
|
|
exclude: './tools/*'
|