Skip to content

Commit 3c0b348

Browse files
committed
misc: Experiment
1 parent 63b5378 commit 3c0b348

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

.github/workflows/lint.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,19 @@ jobs:
4545
name: "Spellcheck everything"
4646
runs-on: ubuntu-latest
4747
steps:
48-
- name: Checkout Actions Repository
49-
uses: actions/checkout@v4
50-
- name: Spell Check Repo
51-
uses: crate-ci/typos@v1.38.1
48+
- uses: actions/checkout@v5
49+
- name: Set up Python 3.10
50+
uses: actions/setup-python@v6
51+
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+
run: |
60+
typos --format sarif
5261
5362
actionlint:
5463
name: "Lint Github actions YAML files"

0 commit comments

Comments
 (0)