ci: various improvements to workflow

This commit is contained in:
vmfunc
2024-10-15 02:51:52 +02:00
parent aff6fea45d
commit 85654f6aaf
11 changed files with 281 additions and 0 deletions

18
.github/workflows/shellcheck.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
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