From 7a2d57c72c5d8866669cb58918a4425825b54008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Madon?= <mael.madon@irit.fr> Date: Fri, 14 Apr 2023 13:19:27 +0200 Subject: [PATCH] add build stage in CI --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 029a0a5..207accf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,9 +5,13 @@ before_script: - python --version - pytest --version - pwd - - python swf2userSessions/swf2sessions.py --help - pip3 install networkx +build: + stage: build + script: + - pip3 install . + test: stage: test coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' -- GitLab