bin/zbm-kcl: fix detection of EFI files #1240
This file contains hidden or 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: Analyze scripts | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '**.sh' | |
- 'bin/**' | |
- 'initcpio/**' | |
- 'testing/**' | |
- 'zfsbootmenu/bin/**' | |
- 'zfsbootmenu/libexec/**' | |
pull_request: | |
paths: | |
- '**.sh' | |
- 'bin/**' | |
- 'initcpio/**' | |
- 'testing/**' | |
- 'zfsbootmenu/bin/**' | |
- 'zfsbootmenu/libexec/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
severity: warning |