recovery shell: print zerrors since the last command was executed #1109
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: 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 |