2020-08-07 09:31:27 +01:00
|
|
|
name: fastqc
|
2019-12-05 15:44:10 +01:00
|
|
|
on:
|
2020-07-16 08:49:08 -04:00
|
|
|
push:
|
2020-07-16 17:14:57 +02:00
|
|
|
paths:
|
|
|
|
- software/fastqc/**
|
|
|
|
- .github/workflows/fastqc.yml
|
|
|
|
- tests
|
2019-12-05 15:44:10 +01:00
|
|
|
pull_request:
|
2020-07-16 17:14:57 +02:00
|
|
|
paths:
|
|
|
|
- software/fastqc/**
|
|
|
|
- .github/workflows/fastqc.yml
|
|
|
|
- tests
|
2019-12-05 15:44:10 +01:00
|
|
|
|
|
|
|
jobs:
|
2020-08-07 09:31:27 +01:00
|
|
|
ci_test:
|
2019-12-05 15:44:10 +01:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-11 17:14:14 +02:00
|
|
|
env:
|
|
|
|
NXF_ANSI_LOG: false
|
2019-12-05 15:44:10 +01:00
|
|
|
steps:
|
|
|
|
|
2020-07-17 10:43:50 +02:00
|
|
|
- uses: actions/checkout@v2
|
2019-12-05 15:44:10 +01:00
|
|
|
|
2019-12-05 16:03:00 +01:00
|
|
|
- name: Install Nextflow
|
|
|
|
run: |
|
2020-08-07 00:38:56 +01:00
|
|
|
export NXF_VER="20.07.1"
|
2019-12-05 16:03:00 +01:00
|
|
|
wget -qO- get.nextflow.io | bash
|
|
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
|
2020-11-16 09:37:22 -06: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:44:10 +01:00
|
|
|
# Test the module
|
2020-11-16 13:45:00 -06:00
|
|
|
- run: pytest --tag fastqc --symlink --wt 2
|