diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b4f5a56804079b4666bf0e8b72cd4f87e40e0437..d7a07cbfb9c4915bf0425c2ccd86cedc1daf3e68 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,11 @@ image: codeception/codeception +stages: + - test + +unit-test-job: # Le job se lance dans la phase de test + stage: test + script: + - echo "Running unit tests" + - sleep 10 + - echo "Unit tests finished" \ No newline at end of file