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 +