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

51 lines
1.3 KiB
YAML
Raw Normal View History

2021-01-12 14:41:09 +00:00
name: preseq_lcextrap
on:
push:
paths:
- software/preseq/lcextrap/**
- .github/workflows/preseq_lcextrap.yml
- tests/software/preseq/**
pull_request:
paths:
- software/preseq/lcextrap/**
- .github/workflows/preseq_lcextrap.yml
- tests/software/preseq/**
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
2021-01-22 17:26:58 +00:00
- run: pytest --kwdof --tag preseq_lcextrap --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: |
2021-01-22 17:49:24 +00:00
/tmp/pytest_workflow_*/*/.nextflow.log
2021-01-22 17:16:19 +00:00
/tmp/pytest_workflow_*/*/log.out
/tmp/pytest_workflow_*/*/log.err