We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b5378 commit 3c0b348Copy full SHA for 3c0b348
1 file changed
.github/workflows/lint.yml
@@ -45,10 +45,19 @@ jobs:
45
name: "Spellcheck everything"
46
runs-on: ubuntu-latest
47
steps:
48
- - name: Checkout Actions Repository
49
- uses: actions/checkout@v4
50
- - name: Spell Check Repo
51
- uses: crate-ci/typos@v1.38.1
+ - uses: actions/checkout@v5
+ - name: Set up Python 3.10
+ uses: actions/setup-python@v6
+ with:
52
+ python-version: "3.10"
53
+ - name: Install dependencies
54
+ run: |
55
+ python -m pip install --upgrade pip
56
+ pip install typos
57
+
58
+ - name: Lint codebase with flake8
59
60
+ typos --format sarif
61
62
actionlint:
63
name: "Lint Github actions YAML files"
0 commit comments