From 14cd7c18334137ef9eef95a80c79a573a893e557 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Tue, 8 Jun 2021 15:23:19 +0200 Subject: [PATCH] Add coverage step to CI Signed-off-by: Evan Lezar --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dbd9552f..400f6a5e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -66,6 +66,12 @@ unit_test: script: - make test +coverage: + <<: *tests-setup + stage: tests + script: + - make coverage + fmt: <<: *tests-setup stage: tests