chore(ci): remove sync job #611
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
name: 'Lint' | |
permissions: {} | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ShellCheck on *.sh | |
uses: ludeeus/action-shellcheck@master | |
with: | |
severity: info # TODO: check if we can resolve the style issues as well | |
- name: Run ShellCheck on hook templates | |
uses: ludeeus/action-shellcheck@master | |
with: | |
scandir: 'templates/hooks' | |
additional_files: '*.in' |