v2 authui #53
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
# Codespell configuration is within .codespellrc | |
--- | |
name: Shellcheck | |
on: | |
push: | |
branches: [v2] | |
pull_request: | |
branches: [v2] | |
permissions: | |
contents: read | |
jobs: | |
shellcheck: | |
name: Check shell scripts and spelling errors. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Codespell | |
uses: codespell-project/actions-codespell@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt update && sudo apt install -y shellcheck | |
- name: shellcheck | |
run: | | |
git grep -l '^#\( *shellcheck \|!\(/bin/\|/usr/bin/env \)\(sh\|bash\|dash\|ksh\)\)' | xargs shellcheck |