Skip to content

Commit

Permalink
Add a codespell lint job
Browse files Browse the repository at this point in the history
  • Loading branch information
matrss committed May 27, 2024
1 parent 3858525 commit 884787b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ on:
- 'GSOC**'

jobs:
codespell:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Lint with codespell
run: |
python -m pip install --upgrade pip
pip install codespell
git ls-files -z | xargs -0 codespell --check-filenames
flake8:
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down

0 comments on commit 884787b

Please sign in to comment.