mirror of
https://github.com/lunchcat/sif.git
synced 2026-01-13 13:27:30 -08:00
19 lines
369 B
YAML
19 lines
369 B
YAML
name: Shell Check
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**/*.sh"
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: runner / shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: shellcheck
|
|
uses: reviewdog/action-shellcheck@v1.18.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|