mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
31 lines
730 B
YAML
31 lines
730 B
YAML
|
name: picard_collectmultiplemetrics.yml
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- software/picard/collectmultiplemetrics/**
|
||
|
- .github/workflows/picard_collectmultiplemetrics.yml
|
||
|
- tests
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- software/picard/collectmultiplemetrics/**
|
||
|
- .github/workflows/picard_collectmultiplemetrics.yml
|
||
|
- tests
|
||
|
|
||
|
jobs:
|
||
|
ci_test:
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
NXF_ANSI_LOG: false
|
||
|
steps:
|
||
|
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Install Nextflow
|
||
|
run: |
|
||
|
export NXF_VER="20.07.1"
|
||
|
wget -qO- get.nextflow.io | bash
|
||
|
sudo mv nextflow /usr/local/bin/
|
||
|
|
||
|
# Test the module
|
||
|
- run: nextflow run ./software/picard/collectmultiplemetrics/test/ -profile docker
|