mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
74 lines
2.1 KiB
YAML
74 lines
2.1 KiB
YAML
name: Pytest-workflow
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
changes:
|
|
name: Check for changes
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
# Expose matched filters as job 'modules' output variable
|
|
modules: ${{ steps.filter.outputs.changes }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: dorny/paths-filter@v2
|
|
id: filter
|
|
with:
|
|
filters: '.github/filters.yml'
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: CI Test
|
|
needs: changes
|
|
if: needs.changes.outputs.modules != '[]'
|
|
strategy:
|
|
matrix:
|
|
nxf_version: ['20.11.0-edge']
|
|
tags: ['${{ fromJson(needs.changes.outputs.modules) }}']
|
|
env:
|
|
NXF_ANSI_LOG: false
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.x"
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: /usr/local/bin/nextflow
|
|
key: ${{ runner.os }}-nextflow-${{ matrix.nxf_version }}
|
|
restore-keys: |
|
|
${{ runner.os }}-nextflow-
|
|
|
|
- name: Install Nextflow
|
|
env:
|
|
NXF_VER: ${{ matrix.nxf_version }}
|
|
run: |
|
|
wget -qO- get.nextflow.io | bash
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
- 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
|
|
|
|
# Test the module
|
|
- name: Run pytest-workflow
|
|
run: PROFILE=docker pytest --tag ${{ matrix.tags }} --symlink --wt 2
|
|
|
|
- name: Upload logs on failure
|
|
if: ${{ failure() }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: logs
|
|
path: |
|
|
/tmp/pytest_workflow_*/*/.nextflow.log
|
|
/tmp/pytest_workflow_*/*/log.out
|
|
/tmp/pytest_workflow_*/*/log.err
|