mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
19 lines
292 B
YAML
19 lines
292 B
YAML
|
on:
|
||
|
push:
|
||
|
paths: tools/fastqc/*
|
||
|
pull_request:
|
||
|
paths: tools/fastqc/*
|
||
|
|
||
|
jobs:
|
||
|
run_multiqc:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
|
||
|
# Check out the repository
|
||
|
- uses: actions/checkout@v1
|
||
|
|
||
|
# Test the module
|
||
|
- name: FastQC
|
||
|
run: nextflow run ./tools/fastqc/test/
|