From a9480cc5080279811c6dc0f5a4bd6f7f33506406 Mon Sep 17 00:00:00 2001 From: Crondung <1922635@stud.hs-mannheim.de> Date: Mon, 6 Mar 2023 19:31:37 +0100 Subject: [PATCH] add tests to pipeline --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4bb6e7e..52497a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: cirrusci/flutter:3.7.5 stages: - analyze + - test before_script: - flutter pub get @@ -13,3 +14,10 @@ analyze: - flutter analyze only: - merge_requests + +test: + stage: test + script: + - flutter test + only: + - merge_requests