From 6fd86ad9e5ae26c608e80472ec8f69e2bad93ed6 Mon Sep 17 00:00:00 2001 From: Piotr Faba Date: Fri, 6 Mar 2020 14:56:33 +0000 Subject: [PATCH] 2 tests --- .github/workflows/cutadapt.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cutadapt.yml b/.github/workflows/cutadapt.yml index c30f4ff3..ba92681d 100644 --- a/.github/workflows/cutadapt.yml +++ b/.github/workflows/cutadapt.yml @@ -23,7 +23,12 @@ jobs: wget -qO- get.nextflow.io | bash sudo mv nextflow /usr/local/bin/ - # Test the module - - run: | + - name: Test module with paired-end data + run: | cd tools/cutadapt/test_paired/ nextflow run . -ansi-log false + + - name: Test module with single-end data + run: | + cd tools/cutadapt/test_single/ + nextflow run . -ansi-log false