Actions: install nextflow

This commit is contained in:
Phil Ewels 2019-12-05 16:03:00 +01:00
parent acc4eb0054
commit a065ac3532
4 changed files with 28 additions and 12 deletions

View file

@ -6,7 +6,7 @@ on:
paths: tools/fastqc/*
jobs:
run_multiqc:
run_ci_test:
runs-on: ubuntu-latest
steps:
@ -14,6 +14,10 @@ jobs:
# Check out the repository
- uses: actions/checkout@v1
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
# Test the module
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
run: nextflow run ./tools/fastqc/test/
- run: nextflow run ./tools/fastqc/test/

View file

@ -6,7 +6,7 @@ on:
paths: tools/samtools/index*
jobs:
run_multiqc:
run_ci_test:
runs-on: ubuntu-latest
steps:
@ -14,6 +14,10 @@ jobs:
# Check out the repository
- uses: actions/checkout@v1
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
# Test the module
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
run: nextflow run ./tools/samtools/index/test/
- run: nextflow run ./tools/samtools/index/test/

View file

@ -6,7 +6,7 @@ on:
paths: tools/samtools/sort*
jobs:
run_multiqc:
run_ci_test:
runs-on: ubuntu-latest
steps:
@ -14,6 +14,10 @@ jobs:
# Check out the repository
- uses: actions/checkout@v1
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
# Test the module
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
run: nextflow run ./tools/samtools/sort/test/
- run: nextflow run ./tools/samtools/sort/test/

View file

@ -6,7 +6,7 @@ on:
paths: tools/trim_galore/*
jobs:
run_multiqc:
run_ci_test:
runs-on: ubuntu-latest
steps:
@ -14,6 +14,10 @@ jobs:
# Check out the repository
- uses: actions/checkout@v1
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
# Test the module
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
run: nextflow run ./tools/trim_galore/test/
- run: nextflow run ./tools/trim_galore/test/