mirror of
https://github.com/EV21/dynb.git
synced 2025-12-26 08:29:34 +01:00
16 lines
429 B
YAML
16 lines
429 B
YAML
name: Run shellcheck with reviewdog
|
|
on: [pull_request]
|
|
jobs:
|
|
shellcheck:
|
|
name: runner / shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: shellcheck
|
|
uses: reviewdog/action-shellcheck@v1.9.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|
|
path: "."
|
|
pattern: "*.sh"
|
|
exclude: "./.git/*" |