Skip to content

Commit ac2c99d

Browse files
committed
misc: Experiment
1 parent 6f663c6 commit ac2c99d

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/lint.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,19 @@ jobs:
4848
name: "Spellcheck everything"
4949
runs-on: ubuntu-latest
5050
steps:
51-
- name: Checkout Actions Repository
52-
uses: actions/checkout@v4
53-
- name: Spell Check Repo
54-
uses: crate-ci/[email protected]
51+
- uses: actions/checkout@v5
52+
- name: Set up Python 3.10
53+
uses: actions/setup-python@v6
54+
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+
run: |
63+
typos --format sarif
5564
5665
actionlint:
5766
name: "Lint Github actions YAML files"

0 commit comments

Comments
 (0)