Merge pull request #10 from ivov/watchtower #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Shell check | |
on: push | |
jobs: | |
checks: | |
timeout-minutes: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/[email protected] | |
with: | |
files: infrastructure/02-configure/**/*.sh | |
- name: Shell check | |
uses: ludeeus/[email protected] | |
if: steps.changed-files.outputs.any_changed == 'true' | |
with: | |
version: v0.10.0 | |
scandir: './infrastructure/02-configure' | |
severity: style # check all levels of issues | |
check_together: true # check all scripts in single run |