We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 089067e commit 42b7275Copy full SHA for 42b7275
1 file changed
.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/typos@v1.38.1
+ - 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