mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Add GitHub Actions, put FastQC in to a directory
This commit is contained in:
parent
ada7b5f9a3
commit
4582ab344c
2 changed files with 18 additions and 0 deletions
18
.github/workflows/test-processes.yml
vendored
Normal file
18
.github/workflows/test-processes.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: "nf-core/modules CI"
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
run_multiqc:
|
||||
name: Test modules
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
# Check out the repository
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
# Test each module
|
||||
|
||||
- name: FastQC
|
||||
path: tools/fastqc/*
|
||||
uses: ./tools/fastqc/test-action.yml
|
Loading…
Reference in a new issue