mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
ci: Use paths-filter to make one CI test
This commit is contained in:
parent
474a6fad64
commit
f4316480c5
2 changed files with 19 additions and 1 deletions
4
.github/filters.yml
vendored
Normal file
4
.github/filters.yml
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
fastqc:
|
||||
- software/fastqc/**
|
||||
- .github/workflows/fastqc.yml
|
||||
- tests/software/fastqc/**
|
16
.github/workflows/pytest-workflow.yml
vendored
16
.github/workflows/pytest-workflow.yml
vendored
|
@ -2,12 +2,26 @@ name: Pytest-workflow
|
|||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
# Expose matched filters as job 'modules' output variable
|
||||
modules: ${{ steps.filter.outputs.changes }}
|
||||
steps:
|
||||
# For pull requests it's not necessary to checkout the code
|
||||
- uses: dorny/paths-filter@v2
|
||||
id: filter
|
||||
with:
|
||||
filters: '.github/filters.yml'
|
||||
|
||||
ci_test:
|
||||
runs-on: ubuntu-latest
|
||||
name: CI Test
|
||||
needs: changes
|
||||
strategy:
|
||||
matrix:
|
||||
nxf_version: [20.11.0-edge]
|
||||
tags: ${{ fromJson(needs.changes.outputs.modules) }}
|
||||
env:
|
||||
NXF_ANSI_LOG: false
|
||||
steps:
|
||||
|
@ -19,5 +33,5 @@ jobs:
|
|||
- name: Nextflow pytest-workflow
|
||||
uses: Emiller88/pytest-workflow-composite-action@master
|
||||
with:
|
||||
pytest_tags: 'fastqc'
|
||||
pytest_tags: ${{ matrix.tags }}
|
||||
nxf_version: ${{ matrix.nxf_version }}
|
||||
|
|
Loading…
Reference in a new issue