gha: Use archlinux typos package instead of crate-ci/typos action #978
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: QA | |
| on: [ merge_group, push, pull_request ] | |
| jobs: | |
| spellcheck: | |
| name: Spellcheck | |
| runs-on: ubuntu-latest | |
| container: archlinux:latest | |
| steps: | |
| - name: Install dependencies | |
| run: pacman --noconfirm -Syu && pacman --needed --noconfirm -S git typos | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run spellchecker | |
| run: typos |