From 468d48cc00a9e2dc0701a41dc7311fd7ae64fe27 Mon Sep 17 00:00:00 2001 From: Administrator Date: Mon, 12 Aug 2024 22:28:05 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 67cd5d4..3971380 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,9 @@ stages: + - prepare + - build + - test - update + - deploy composer_update: stage: update @@ -12,4 +16,24 @@ composer_update: cache: key: ${CI_COMMIT_REF_SLUG} paths: - - vendor/ \ No newline at end of file + - vendor/ + +prepare: + stage: prepare + script: + - echo "Preparing environment..." + +build: + stage: build + script: + - echo "Building the project..." + +test: + stage: test + script: + - echo "Running tests..." + +deploy: + stage: deploy + script: + - echo "Deploying the project..." \ No newline at end of file