1
0
mirror of https://gitlab.com/MisterBiggs/astro-helper.git synced 2025-06-16 07:06:43 +00:00

Update .gitlab-ci.yml

This commit is contained in:
Anson Biggs 2021-01-21 00:51:30 +00:00
parent 438a6aa104
commit 928784937b

View File

@ -19,7 +19,11 @@
script:
# Let's run the tests. Substitute `coverage = false` below, if you do not
# want coverage results.
- julia -e 'using Pkg; Pkg.add(pwd()); Pkg.build("AstroHelper"); Pkg.test("AstroHelper"; coverage = true)'
- julia --project -e '
using Pkg;
Pkg.instantiate();
Pkg.build();
Pkg.test(; coverage=true);'
# Comment out below if you do not want coverage results.
# - julia -e 'using Pkg; Pkg.add("Coverage");
# import AstroHelper; cd(joinpath(dirname(pathof(AstroHelper)), ".."));