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

37 lines
840 B
YAML
Raw Normal View History

2020-08-07 12:24:24 +00:00
name: bwa_mem
on:
push:
paths:
- software/bwa/mem/**
2020-12-01 17:40:16 +00:00
- .github/workflows/bwa_mem.yml
2020-11-25 03:24:55 +00:00
- tests/software/bwa/**
2020-08-07 12:24:24 +00:00
pull_request:
paths:
- software/bwa/mem/**
2020-12-01 17:40:16 +00:00
- .github/workflows/bwa_mem.yml
2020-11-25 03:24:55 +00:00
- tests/software/bwa/**
2020-08-07 12:24:24 +00:00
jobs:
ci_test:
runs-on: ubuntu-latest
env:
NXF_ANSI_LOG: false
steps:
- uses: actions/checkout@v2
2020-08-07 12:24:24 +00:00
- name: Install Nextflow
run: |
export NXF_VER="20.07.1"
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
2020-08-07 12:24:24 +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-08-07 12:24:24 +00:00
# Test the module
- run: pytest --tag bwa_index --symlink --wt 2