CI: update vcpkg to 2e66b3637f92d2d97491b9f521ee8a473968f01f #5824
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: Codespell | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| codespell: | |
| name: Check for spelling errors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - uses: codespell-project/actions-codespell@master | |
| with: | |
| check_filenames: true | |
| path: ${{github.workspace}} | |
| skip: "*.lua,*.ts,codespell.yml,vcpkg/,vcpkg/*.*,vcpkg/*,*.svg,debian/changelog,Package/Flatpak/shared-modules/*,Package/Flatpak/shared-modules/*.*,QTelnet.*" | |
| ignore_words_list: "spPort,build-in,pIce,splitted,Fo,pAdd,WONT,pEvent" |