fix: fix crash with brokenfocus and camera-streamer #750
Workflow file for this run
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
on: | |
push: | |
branches: | |
- '**' | |
paths: | |
- '**.sh' | |
- 'webcamd' | |
- 'libs/**' | |
pull_request: | |
branches: | |
- 'master' | |
- 'develop' | |
paths: | |
- '**.sh' | |
- 'webcamd' | |
- 'libs/**' | |
name: 'Check Script' | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Repository | |
uses: actions/checkout@v2 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
env: | |
SHELLCHECK_OPTS: -ax -s bash | |
with: | |
ignore_paths: custompios | |
format: tty |