Update dependency cspell to ^9.8.0 #331
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: CI | |
| on: | |
| pull_request: # any pull request | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| shellcheck: | |
| name: Shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⤵️ Check out code from GitHub | |
| uses: actions/checkout@v6 | |
| - name: 🚀 Run Shellcheck | |
| uses: ludeeus/action-shellcheck@2.0.0 # cspell:words ludeeus | |
| env: | |
| SHELLCHECK_OPTS: -s bash | |
| with: | |
| additional_files: >- | |
| direnvrc | |
| executable_* | |
| *.zsh-theme | |
| dot_profile | |
| dot_zprofile | |
| dot_zshrc | |
| spellcheck: | |
| uses: finleyfamily/workflows/.github/workflows/spellcheck.yml@master |