Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4)
28 lines
521 B
YAML
28 lines
521 B
YAML
name: ShellCheck
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- '.github/workflows/shellcheck.yml'
|
|
- '**/*.sh'
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- '.github/workflows/shellcheck.yml'
|
|
- '**/*.sh'
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run ShellCheck
|
|
uses: ludeeus/action-shellcheck@2.0.0
|
|
with:
|
|
ignore_names: gradlew
|
|
ignore_paths: ./userspace/ksud/src/installer.sh
|