Skip to content
Snippets Groups Projects
Commit bb7b1b1c authored by Matthias Bernt's avatar Matthias Bernt
Browse files

Update file .gitlab-ci.yaml

parent fb31ccae
No related branches found
No related tags found
1 merge request!5Add spellcking
stages:
- spellcheck
spellcheck:
stage: spellcheck
image: python:3.10
before_script:
- pip install codespell
script:
# Run codespell recursively on the repository
- codespell --ignore-words-list="teh,hifis" --skip="*.lock,*.csv" --quiet-level=2
artifacts:
when: always
reports:
junit: codespell-report.xml
rules:
- if: '$CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "merge_request_event"'
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment