2020-08-07 07:21:47 -04:00
|
|
|
name: trimgalore
|
2019-12-05 09:53:38 -05:00
|
|
|
on:
|
2020-07-16 11:11:34 -04:00
|
|
|
push:
|
2020-07-16 11:14:57 -04:00
|
|
|
paths:
|
2020-08-07 07:21:47 -04:00
|
|
|
- software/trimgalore/**
|
2020-12-01 12:40:16 -05:00
|
|
|
- .github/workflows/trimgalore.yml
|
2020-11-24 22:24:55 -05:00
|
|
|
- tests/software/trimgalore/**
|
2019-12-05 09:53:38 -05:00
|
|
|
pull_request:
|
2020-07-16 11:14:57 -04:00
|
|
|
paths:
|
2020-08-07 07:21:47 -04:00
|
|
|
- software/trimgalore/**
|
2020-12-01 12:40:16 -05:00
|
|
|
- .github/workflows/trimgalore.yml
|
2020-11-24 22:24:55 -05:00
|
|
|
- tests/software/trimgalore/**
|
2019-12-05 09:53:38 -05:00
|
|
|
|
|
|
|
jobs:
|
2020-08-07 07:21:47 -04:00
|
|
|
ci_test:
|
2019-12-05 09:53:38 -05:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-11 11:14:14 -04:00
|
|
|
env:
|
|
|
|
NXF_ANSI_LOG: false
|
2019-12-05 09:53:38 -05:00
|
|
|
steps:
|
2020-11-24 21:57:13 -05:00
|
|
|
- uses: actions/checkout@v2
|
2019-12-05 09:53:38 -05:00
|
|
|
|
2020-11-24 21:57:13 -05:00
|
|
|
- name: Install Nextflow
|
|
|
|
run: |
|
|
|
|
export NXF_VER="20.07.1"
|
|
|
|
wget -qO- get.nextflow.io | bash
|
|
|
|
sudo mv nextflow /usr/local/bin/
|
2019-12-05 09:53:38 -05:00
|
|
|
|
2020-11-24 21:57:13 -05: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 10:03:00 -05:00
|
|
|
|
2020-11-24 21:57:13 -05:00
|
|
|
# Test the module
|
|
|
|
- run: pytest --tag trimgalore --symlink --wt 2
|