diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..86e3e7d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +# gitlab-ci yml +stages: + - build + - test + - deploy + +job 1: + stage: build + script: + - echo "Running build stage" && sleep 10 + +job 2: + stage: test + script: + - echo "Running test stage" && sleep 10 + +job 3: + stage: deploy + script: + - echo "Running deploy stage" && sleep 10 + +