Skip to content
Snippets Groups Projects
Commit 36fc0c40 authored by Sebastian Henz's avatar Sebastian Henz
Browse files

Merge branch 'gitlab-ci' into 'master'

Add .gitlab-ci.yml

Closes #1

See merge request !18
parents 862e3c85 ea005ca4
No related branches found
Tags v2.0.0
No related merge requests found
Pipeline #2908 passed with stage
in 13 minutes and 19 seconds
......@@ -6,3 +6,4 @@
^Notizen\.md$
^LICENSE\.txt$
^\.gitlab$
^\.gitlab-ci\.yml$
# Using the rocker/tidyverse image because it has devtools installed.
.check_template: &check_job_template
only:
- master
- merge_requests
- tags
script:
- R -e 'devtools::install_deps(quiet = TRUE)'
- R -e 'devtools::check(error_on = "warning")'
# latest version of the previous major R release
check-previous:
image: rocker/tidyverse:3.5.3
<<: *check_job_template
# latest R release
check-latest:
image: rocker/tidyverse:latest
<<: *check_job_template
# R development version
check-devel:
image: rocker/tidyverse:devel
<<: *check_job_template
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment