Add CI workflows for testing and version checks, enhance README and T… #33
Workflow file for this run
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: Lint Shell Script | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'sync-ssh-keys.sh' | |
| - 'users.conf' | |
| - '.github/workflows/lint.yml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'sync-ssh-keys.sh' | |
| - 'users.conf' | |
| - '.github/workflows/lint.yml' | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| scandir: . | |
| severity: warning |