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