mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Actions: install nextflow
This commit is contained in:
parent
acc4eb0054
commit
a065ac3532
4 changed files with 28 additions and 12 deletions
10
.github/workflows/fastqc.yml
vendored
10
.github/workflows/fastqc.yml
vendored
|
@ -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/
|
||||
|
|
10
.github/workflows/samtools_index.yml
vendored
10
.github/workflows/samtools_index.yml
vendored
|
@ -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/
|
||||
|
|
10
.github/workflows/samtools_sort.yml
vendored
10
.github/workflows/samtools_sort.yml
vendored
|
@ -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/
|
||||
|
|
10
.github/workflows/trim_galore.yml
vendored
10
.github/workflows/trim_galore.yml
vendored
|
@ -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/
|
||||
|
|
Loading…
Reference in a new issue