From 4582ab344c9d10d49c59c2461a3572b47b389f66 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Thu, 5 Dec 2019 14:52:43 +0100 Subject: [PATCH] Add GitHub Actions, put FastQC in to a directory --- .github/workflows/test-processes.yml | 18 ++++++++++++++++++ nf/fastqc.nf => tools/fastqc/main.nf | 0 2 files changed, 18 insertions(+) create mode 100644 .github/workflows/test-processes.yml rename nf/fastqc.nf => tools/fastqc/main.nf (100%) diff --git a/.github/workflows/test-processes.yml b/.github/workflows/test-processes.yml new file mode 100644 index 00000000..5e6dc699 --- /dev/null +++ b/.github/workflows/test-processes.yml @@ -0,0 +1,18 @@ +name: "nf-core/modules CI" +on: [push, pull_request] + +jobs: + run_multiqc: + name: Test modules + runs-on: ubuntu-latest + + steps: + + # Check out the repository + - uses: actions/checkout@v1 + + # Test each module + + - name: FastQC + path: tools/fastqc/* + uses: ./tools/fastqc/test-action.yml diff --git a/nf/fastqc.nf b/tools/fastqc/main.nf similarity index 100% rename from nf/fastqc.nf rename to tools/fastqc/main.nf