Add codespell step to CI lint workflow (#2551)

This commit is contained in:
Álvaro Mondéjar
2021-08-23 19:50:25 +02:00
committed by GitHub
parent 98b1d0e991
commit c93c05341d
3 changed files with 10 additions and 2 deletions

View File

@@ -84,6 +84,9 @@ jobs:
- name: Check with csslint
if: always()
run: python -m tox -e csslint
- name: Check with codespell
if: always()
run: python -m tox -e codespell
translation:
runs-on: ubuntu-latest