nf-core_modules/.github/workflows/multiqc.yml

50 lines
1.1 KiB
YAML
Raw Normal View History

name: multiqc
on:
push:
paths:
- software/multiqc/**
- .github/workflows/multiqc.yml
- tests
pull_request:
paths:
- software/multiqc/**
- .github/workflows/multiqc.yml
- tests
jobs:
ci_test:
runs-on: ubuntu-latest
2020-12-09 15:56:40 +00:00
strategy:
matrix:
2020-12-14 00:14:28 +00:00
nxf_version: [20.11.0-edge]
env:
NXF_ANSI_LOG: false
steps:
2020-12-09 15:56:11 +00:00
- uses: actions/checkout@v2
2020-12-09 15:56:11 +00:00
- name: Install Nextflow
2020-12-09 15:56:40 +00:00
env:
NXF_VER: ${{ matrix.nxf_version }}
2020-12-09 15:56:11 +00:00
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
2020-12-09 15:56:11 +00:00
- 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
2020-12-04 14:45:48 +00:00
2020-12-09 15:56:11 +00:00
# Test the module
2021-01-22 17:26:58 +00:00
- run: pytest --kwdof --tag multiqc --symlink --wt 2
2021-01-22 17:16:19 +00:00
- name: Upload logs on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: logs
path: |
/tmp/pytest_workflow_*/*/log.out
/tmp/pytest_workflow_*/*/log.err