Skip to content
Snippets Groups Projects
Verified Commit fe2fdb8d authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

ci: improves ci

parent 22217a92
No related branches found
No related tags found
No related merge requests found
Pipeline #5939 passed
---
# Using the official Python Docker image as default
image: python
default:
image: python
before_script:
- pip install miss_hit
# Columns of the pipeline
stages:
- static analysis
# Static code analysis job via MISS_HIT
static analysis:
style_check:
stage: static analysis
before_script:
- pip install miss_hit
script:
- mh_style . --fix
- mh_metric . --ci
metric_check:
stage: static analysis
script:
- mh_metric . --ci
lint_check:
stage: static analysis
script:
- mh_lint .
allow_failure: false
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