check_disk: prevent using stat on inaccessible filesystems #878
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: Spellcheck | |
| on: | |
| workflow_dispatch: {} | |
| # Run for pushes on any branch | |
| push: | |
| branches: | |
| - '*' | |
| # Run for any PRs | |
| pull_request: | |
| jobs: | |
| codespell: | |
| name: codespell | |
| strategy: | |
| fail-fast: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Codespell | |
| uses: codespell-project/actions-codespell@v2 | |
| with: | |
| skip: "./.git,./.gitignore,./ABOUT-NLS,./gl,./tools/squid.conf,./build-aux/ltmain.sh,THANKS.in" | |
| ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners,esponse,slac | |
| check_filenames: true | |
| check_hidden: true |