fix(dotfiles): repair macos config setup #258
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: Shell Script Lint | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| paths: ['**/*.sh', 'bin/*'] | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| scandir: './bin' | |
| severity: error | |
| format: gcc | |
| disable_matcher: true | |
| - name: Run ShellCheck on shell scripts | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| scandir: '.' | |
| severity: error | |
| format: gcc | |
| disable_matcher: true | |
| ignore_paths: | | |
| .git | |
| .github | |
| roles | |
| docs |