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

41 lines
924 B
YAML
Raw Normal View History

2020-08-07 08:31:27 +00:00
name: fastqc
2019-12-05 14:44:10 +00:00
on:
2020-07-16 12:49:08 +00:00
push:
paths:
- software/fastqc/**
- .github/workflows/fastqc.yml
2020-11-25 03:24:55 +00:00
- tests/software/fastqc/**
2019-12-05 14:44:10 +00:00
pull_request:
paths:
- software/fastqc/**
- .github/workflows/fastqc.yml
2020-11-25 03:24:55 +00:00
- tests/software/fastqc/**
2019-12-05 14:44:10 +00:00
jobs:
2020-08-07 08:31:27 +00:00
ci_test:
2019-12-05 14:44:10 +00:00
runs-on: ubuntu-latest
2020-12-01 17:13:43 +00:00
strategy:
matrix:
2020-12-04 14:23:19 +00:00
nxf_version: [20.07.1, '']
2020-07-11 15:14:14 +00:00
env:
NXF_ANSI_LOG: false
2019-12-05 14:44:10 +00:00
steps:
2020-11-25 03:24:55 +00:00
- uses: actions/checkout@v2
2019-12-05 14:44:10 +00:00
2020-11-25 03:24:55 +00:00
- name: Install Nextflow
env:
NXF_VER: ${{ matrix.nxf_version }}
2020-11-25 03:24:55 +00:00
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
2019-12-05 14:44:10 +00:00
2020-11-25 03:24:55 +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
2019-12-05 15:03:00 +00:00
2020-11-25 03:24:55 +00:00
# Test the module
- run: pytest --tag fastqc --symlink --wt 2