Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,22 @@ jobs:
run: python ${GITHUB_WORKSPACE}/bin/cchecker.py ${GITHUB_WORKSPACE}/nfcore_custom.config ${GITHUB_WORKSPACE}/.github/workflows/main.yml

check_nextflow_config:
runs-on: ubuntu-latest
name: Check if nextflow config runs in repository root
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
NXF_VER:
- 25.10.2
- latest-everything
steps:
- uses: actions/checkout@v4
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
- run: nextflow config -show-profiles ${GITHUB_WORKSPACE}
- uses: actions/checkout@v4
- name: Set up Nextflow
uses: nf-core/setup-nextflow@v2
with:
version: ${{ matrix.NXF_VER }}
- run: nextflow config -show-profiles ${GITHUB_WORKSPACE}
- run: nextflow lint ${GITHUB_WORKSPACE}

profile_test:
runs-on: ubuntu-latest
Expand Down
Loading