From 34cfc32c29c7435f4463120714e708b60788ba81 Mon Sep 17 00:00:00 2001 From: kevinmenden Date: Fri, 29 Jan 2021 16:15:45 +0100 Subject: [PATCH] added quast workflow --- .github/workflows/quast.yml | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/quast.yml diff --git a/.github/workflows/quast.yml b/.github/workflows/quast.yml new file mode 100644 index 00000000..7030d638 --- /dev/null +++ b/.github/workflows/quast.yml @@ -0,0 +1,40 @@ +name: quast +on: + push: + paths: + - software/quast/** + - .github/workflows/quast.yml + - tests + pull_request: + paths: + - software/pquast/** + - .github/workflows/quest.yml + - tests + +jobs: + ci_test: + runs-on: ubuntu-latest + strategy: + matrix: + nxf_version: [20.11.0-edge] + env: + NXF_ANSI_LOG: false + steps: + - uses: actions/checkout@v2 + + - name: Install Nextflow + env: + NXF_VER: ${{ matrix.nxf_version }} + run: | + 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: pytest --tag quest --symlink --wt 2