From 2691acefeb4790280bcdbbe923bfc6f12b2aae98 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Thu, 23 Jan 2020 15:17:01 +0100 Subject: [PATCH] Add the first gitlab ci YAML This is the first test of connecting gitlab CI to the github repository. Signed-off-by: Major Hayden --- .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..1f2cb3ed --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,8 @@ +stages: + - test + +unit_test: + stage: test + image: python:3.7-alpine + script: + - python3 -m unittest test.test_osbuild