We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7112289 commit 7e84c1eCopy full SHA for 7e84c1e
1 file changed
.github/workflows/qa.yml
@@ -6,7 +6,13 @@ jobs:
6
spellcheck:
7
name: Spellcheck
8
runs-on: ubuntu-latest
9
+ container: archlinux:latest
10
steps:
- - uses: actions/checkout@v4
11
- # Executes "typos ."
12
- - uses: crate-ci/typos@v1
+ - name: Install dependencies
+ run: pacman --noconfirm -Syu && pacman --needed --noconfirm -S git typos
13
+
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: Run spellchecker
18
+ run: typos
0 commit comments