mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
ci(trimgalore): Use pytest-workflow
This commit is contained in:
parent
2fc39e02e2
commit
86219a586b
1 changed files with 14 additions and 8 deletions
10
.github/workflows/software/trimgalore.yml
vendored
10
.github/workflows/software/trimgalore.yml
vendored
|
@ -17,7 +17,6 @@ jobs:
|
|||
env:
|
||||
NXF_ANSI_LOG: false
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install Nextflow
|
||||
|
@ -26,5 +25,12 @@ jobs:
|
|||
wget -qO- get.nextflow.io | bash
|
||||
sudo mv nextflow /usr/local/bin/
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: "3.x"
|
||||
- name: Install dependencies
|
||||
run: python -m pip install --upgrade pip pytest-workflow
|
||||
|
||||
# Test the module
|
||||
- run: nextflow run ./software/trimgalore/test/ -profile docker
|
||||
- run: pytest --tag trimgalore --symlink --wt 2
|
||||
|
|
Loading…
Reference in a new issue