2021-01-22 19:32:54 +00:00
|
|
|
name: Pytest-workflow
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2021-01-24 04:55:07 +00:00
|
|
|
changes:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
# Expose matched filters as job 'modules' output variable
|
|
|
|
modules: ${{ steps.filter.outputs.changes }}
|
|
|
|
steps:
|
2021-01-24 04:58:13 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: dorny/paths-filter@v2
|
|
|
|
id: filter
|
|
|
|
with:
|
|
|
|
filters: '.github/filters.yml'
|
2021-01-24 04:55:07 +00:00
|
|
|
|
2021-01-22 19:32:54 +00:00
|
|
|
ci_test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: CI Test
|
2021-01-24 04:55:07 +00:00
|
|
|
needs: changes
|
2021-01-24 05:25:53 +00:00
|
|
|
if: ${{ fromJson(needs.changes.outputs.modules) }} == 'true'
|
2021-01-22 19:32:54 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
nxf_version: [20.11.0-edge]
|
2021-01-24 04:55:07 +00:00
|
|
|
tags: ${{ fromJson(needs.changes.outputs.modules) }}
|
2021-01-22 19:32:54 +00:00
|
|
|
env:
|
|
|
|
NXF_ANSI_LOG: false
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-01-23 04:07:55 +00:00
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
2021-01-22 19:32:54 +00:00
|
|
|
- name: Nextflow pytest-workflow
|
2021-01-23 04:06:01 +00:00
|
|
|
uses: Emiller88/pytest-workflow-composite-action@master
|
2021-01-22 19:32:54 +00:00
|
|
|
with:
|
2021-01-24 04:55:07 +00:00
|
|
|
pytest_tags: ${{ matrix.tags }}
|
2021-01-22 19:32:54 +00:00
|
|
|
nxf_version: ${{ matrix.nxf_version }}
|