Skip to content

Commit c23073d

Browse files
committed
ci: Run spell-checker
1 parent 90a88e9 commit c23073d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,21 @@ jobs:
2020
python-version: '3.12'
2121
- run: python -m pip install reuse
2222
- run: python -m reuse lint
23+
typos:
24+
runs-on: ubuntu-latest
25+
strategy:
26+
fail-fast: false
27+
steps:
28+
- uses: actions/checkout@v4
29+
- uses: actions/cache@v4
30+
with:
31+
path: |
32+
~/.cargo/bin/
33+
~/.cargo/registry/index/
34+
~/.cargo/registry/cache/
35+
~/.cargo/git/db/
36+
target/
37+
key: ${{ runner.os }}-cargo-${{ github.sha }}
38+
restore-keys: ${{ runner.os }}-cargo
39+
- run: cargo install typos-cli
40+
- run: typos

0 commit comments

Comments
 (0)