From ea21fc69c1ba4bd17155909c25de7448ac7d0e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@villemot.name> Date: Fri, 9 Apr 2021 16:51:41 +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