We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90a88e9 commit c23073dCopy full SHA for c23073d
1 file changed
.github/workflows/lint.yml
@@ -20,3 +20,21 @@ jobs:
20
python-version: '3.12'
21
- run: python -m pip install reuse
22
- 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