-
Notifications
You must be signed in to change notification settings - Fork 2
21 lines (20 loc) · 977 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: CI
on: [push, pull_request]
jobs:
pipeline-compilation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: nf-core/setup-nextflow@v1
- name: Run pipeline
run: |
nextflow run ${GITHUB_WORKSPACE} --help
nextflow run ${GITHUB_WORKSPACE} --help -profile tracking
nextflow run ${GITHUB_WORKSPACE} --help -profile tracking,infant
nextflow run ${GITHUB_WORKSPACE} --help -profile connectomics
nextflow run ${GITHUB_WORKSPACE} --help -profile connectomics,infant
nextflow run ${GITHUB_WORKSPACE} --help -profile tracking,connectomics
nextflow run ${GITHUB_WORKSPACE} --help -profile tracking,connectomics,infant
nextflow run ${GITHUB_WORKSPACE} --help -profile freesurfer
nextflow run ${GITHUB_WORKSPACE} --help -profile freesurfer,connectomics
nextflow run ${GITHUB_WORKSPACE} --help -profile freesurfer,connectomics,tracking