From 77efa81c54a078dd228ba1fd0710d6ac04ba629b Mon Sep 17 00:00:00 2001 From: KKlochko Date: Mon, 9 Oct 2023 20:00:50 +0300 Subject: [PATCH] Add the Gitlab CI/CD configuration. --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2e638c4 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +image: clojure:temurin-11-lein-2.10.0-alpine + +stages: + - test + +unit tests: + stage: test + script: + - lein test +