We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f663c6 commit ac2c99dCopy full SHA for ac2c99d
.github/workflows/lint.yml
@@ -48,10 +48,19 @@ jobs:
48
name: "Spellcheck everything"
49
runs-on: ubuntu-latest
50
steps:
51
- - name: Checkout Actions Repository
52
- uses: actions/checkout@v4
53
- - name: Spell Check Repo
54
- uses: crate-ci/[email protected]
+ - uses: actions/checkout@v5
+ - name: Set up Python 3.10
+ uses: actions/setup-python@v6
+ with:
55
+ python-version: "3.10"
56
+ - name: Install dependencies
57
+ run: |
58
+ python -m pip install --upgrade pip
59
+ pip install typos
60
+
61
+ - name: Lint codebase with flake8
62
63
+ typos --format sarif
64
65
actionlint:
66
name: "Lint Github actions YAML files"
0 commit comments