Merge pull request #5671 from nextcloud/enh/5660/allow-adjust-name-of… #5515
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: Shellcheck | |
on: | |
pull_request: | |
paths: | |
- '**.sh' | |
push: | |
branches: | |
- main | |
paths: | |
- '**.sh' | |
jobs: | |
shellcheck: | |
name: Check Shell | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Shellcheck | |
uses: ludeeus/[email protected] | |
with: | |
check_together: 'yes' | |
env: | |
SHELLCHECK_OPTS: --shell bash |