[Automated] Merged develop into target master #1030
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
| 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 |