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

41 lines
1,015 B
YAML
Raw Normal View History

2020-08-07 15:42:56 +00:00
name: picard_markduplicates
on:
push:
paths:
- software/picard/markduplicates/**
2020-12-01 17:40:16 +00:00
- .github/workflows/picard_markduplicates.yml
2020-11-25 03:24:55 +00:00
- tests/software/picard/**
2020-08-07 15:42:56 +00:00
pull_request:
paths:
- software/picard/markduplicates/**
2020-12-01 17:40:16 +00:00
- .github/workflows/picard_markduplicates.yml
2020-11-25 03:24:55 +00:00
- tests/software/picard/**
2020-08-07 15:42:56 +00:00
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]
2020-08-07 15:42:56 +00:00
env:
NXF_ANSI_LOG: false
steps:
2020-11-25 01:41:16 +00:00
- uses: actions/checkout@v2
2020-08-07 15:42:56 +00:00
2020-11-25 01:41:16 +00:00
- name: Install Nextflow
2020-12-09 15:56:40 +00:00
env:
NXF_VER: ${{ matrix.nxf_version }}
2020-11-25 01:41:16 +00:00
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
2020-08-07 15:42:56 +00:00
2020-11-25 01:41:16 +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 15:42:56 +00:00
2020-11-25 01:41:16 +00:00
# Test the module
- run: pytest --tag picard_markduplicates --symlink --wt 2