From af554b86672e60ceecf1ac0b4ab089f0a2acce01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@villemot.name> Date: Fri, 9 Apr 2021 18:19:05 +0200 Subject: [PATCH] CI: run unit tests --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..50f7289 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +variables: + TERM: linux + JULIA_VERSION: 1.6.0 + JULIA: /usr/local/julia/$JULIA_VERSION/bin/julia + +stages: + - test + +unit_tests: + stage: test + script: + - $JULIA --project=@. -e "import Pkg; Pkg.test()" -- GitLab