From 5cc9a80e3bad738aadcb97f554a6b87a23c6508b Mon Sep 17 00:00:00 2001 From: Liuxi Mei <liume102@student.liu.se> Date: Mon, 23 Sep 2024 13:31:14 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e955b4d..7617e71 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,16 +13,16 @@ testing: stage: test allow_failure: true when: on_success -only: - - master -coverage: '/coverage: \d+.\d+% of statements/' -script: - - Rscript -e 'install.packages("DT")' - - Rscript -e 'install.packages("covr")' - - Rscript -e 'covr::gitlab(quiet = FALSE)' -artifacts: - paths: - - public + only: + - master + coverage: '/coverage: \d+.\d+% of statements/' + script: + - Rscript -e 'install.packages("DT")' + - Rscript -e 'install.packages("covr")' + - Rscript -e 'covr::gitlab(quiet = FALSE)' + artifacts: + paths: + - public # To produce a code coverage report as a GitLab page see # https://about.gitlab.com/2016/11/03/publish-code-coverage-report-with-gitlab-pages/ pages: -- GitLab