mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-26 20:13:31 +02:00
28 lines
658 B
YAML
28 lines
658 B
YAML
---
|
|
name: Lint Shell scripts on Pull Requests
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request:
|
|
paths:
|
|
- "**.sh"
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Get changes
|
|
uses: dorny/paths-filter@v2
|
|
id: filter
|
|
with:
|
|
list-files: shell
|
|
filters: |
|
|
shell:
|
|
- added|modified: "**.sh"
|
|
- name: Lint files
|
|
if: ${{ steps.filter.outputs.shell == 'true' }}
|
|
uses: reviewdog/action-shellcheck@v1
|
|
with:
|
|
shellcheck_flags: "${{ steps.filter.outputs.shell_files }}"
|