From 6901005ec1b7451fb9c191607e68e3438185ecaf Mon Sep 17 00:00:00 2001 From: Felix Goding <felgo673@student.liu.se> Date: Tue, 18 Feb 2020 10:53:33 +0100 Subject: [PATCH] Added simple .gitlab-ci.yml file --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..1b747f5d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,8 @@ +stages: + - build + +PythonBuild: + stage: build + script: + - apt-get update && apt-get install python3 -y + - python3 helloworld.py \ No newline at end of file -- GitLab