diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..50f728991b9a33518dddfbb7ba8560a265543261 --- /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()"