diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..4228b1d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +stages: + - build + - test + +build-job: + stage: build + script: + - mkdir build + - cd build + - cmake .. + - make + +unit-test-job: + stage: test + script: + - echo "Running unit tests" + - cd build + - tests/tests \ No newline at end of file