Skip to content
Snippets Groups Projects
Commit 5dafd56a authored by Radoslav Bodó's avatar Radoslav Bodó
Browse files

ci: use single stage with coverage first

parent 754cb250
No related branches found
No related tags found
No related merge requests found
Pipeline #7267 passed
...@@ -2,23 +2,14 @@ ...@@ -2,23 +2,14 @@
image: debian:bookworm image: debian:bookworm
stages: stages:
- lint - code_quality
- coverage
lint: code_quality:
stage: lint stage: code_quality
before_script:
- apt-get update && apt-get -y install make
- make install
- make venv
script:
- . venv/bin/activate && make lint
coverage:
stage: coverage
before_script: before_script:
- apt-get update && apt-get -y install make - apt-get update && apt-get -y install make
- make install - make install
- make venv - make venv
script: script:
- . venv/bin/activate && make coverage - . venv/bin/activate && make coverage
- . venv/bin/activate && make lint
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