From 95270092b0995defd876a9fe302bffe58737185b Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Fri, 22 Jan 2021 13:32:54 -0600 Subject: [PATCH] ci: Add universal CI Test --- .github/workflows/pytest-workflow.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pytest-workflow.yml diff --git a/.github/workflows/pytest-workflow.yml b/.github/workflows/pytest-workflow.yml new file mode 100644 index 00000000..538260eb --- /dev/null +++ b/.github/workflows/pytest-workflow.yml @@ -0,0 +1,19 @@ +name: Pytest-workflow +on: [push, pull_request] + +jobs: + ci_test: + runs-on: ubuntu-latest + name: CI Test + strategy: + matrix: + nxf_version: [20.11.0-edge] + env: + NXF_ANSI_LOG: false + steps: + - uses: actions/checkout@v2 + - name: Nextflow pytest-workflow + uses: Emiller88/pytest-workflow-composite-action@v0.1 + with: + pytest_tags: 'fastqc' + nxf_version: ${{ matrix.nxf_version }}