Skip to content
Snippets Groups Projects

Gitlab ci

Merged van den Berg requested to merge gitlab-ci into devel
1 file
+ 28
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 28
0
variables:
GIT_SUBMODULE_STRATEGY: recursive
.before_script_anchor: &before_script_anchor
before_script:
- pip3 install pytest-workflow
stages:
- sanity
- dry-run
test-sanity:
<<: *before_script_anchor
script:
- pytest --tag sanity
image: lumc/singularity-snakemake:3.5.2-5.15.0
tags:
- docker
stage: sanity
test-dry-run:
<<: *before_script_anchor
script:
- pytest --tag dry-run
image: lumc/singularity-snakemake:3.5.2-5.15.0
tags:
- docker
stage: dry-run
Loading