From 638f8bc9086caa08c5294af3a939a84659b27703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9line?= <liuceline2001@yahoo.fr> Date: Thu, 2 Feb 2023 11:53:44 +0100 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cc0768f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: alpine +image: alpine + +stages: + - hello + - goodbye + +hello_job: + stage: hello + script: + - echo Hello World ! This is a CI/CD pipeline for $CI_PROJECT_NAME + - cat README.md + +goodbye_job: + stage: goodbye + script: + - echo 'Goodbye World !' -- GitLab