diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a350fc097..b9e5d8fb1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,6 +20,8 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install --upgrade tox + # Annotate codespell within PR + - uses: codespell-project/codespell-problem-matcher@v1 - name: Run linters run: | tox -e lint diff --git a/tox.ini b/tox.ini index 39bd25055..8c7f6093e 100644 --- a/tox.ini +++ b/tox.ini @@ -23,7 +23,7 @@ deps = codespell~=2.0 flake8 commands = - codespell dandi setup.py + codespell dandi docs tools setup.py flake8 --config=setup.cfg {posargs} dandi setup.py [testenv:typing]