Skip to content
Snippets Groups Projects
Commit 1a452225 authored by Bas Nijholt's avatar Bas Nijholt
Browse files

add authors check in CI

parent c6647903
No related branches found
No related tags found
1 merge request!93add a release guide
Pipeline #11985 passed
image: quantumtinkerer/research
test:
script:
- pip install -r test-requirements.txt
......@@ -7,3 +8,9 @@ test:
artifacts:
paths:
- htmlcov
authors check:
script:
- MISSING_AUTHORS=$(git shortlog -s HEAD | sed -e "s/^[0-9\t ]*//"| xargs -i sh -c 'grep -q "{}" AUTHORS.md || echo "{} missing from authors"')
- if [ ! -z "$MISSING_AUTHORS" ]; then { echo $MISSING_AUTHORS; exit 1; }; fi
allow_failure: true
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