Feature/private fire support #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nf-test CI | |
on: | |
pull_request: | |
release: | |
types: [published] | |
workflow_dispatch: | |
env: | |
NXF_ANSI_LOG: false | |
jobs: | |
test: | |
name: Run pipeline with test data | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Nextflow versions: check pipeline minimum and current latest | |
NXF_VER: ["24.04.0"] | |
steps: | |
- name: Check out pipeline code | |
uses: actions/checkout@v4 | |
- name: Setup Nextflow | |
uses: nf-core/[email protected] | |
with: | |
version: "${{ matrix.NXF_VER }}" | |
- name: Install nf-test | |
uses: nf-core/setup-nf-test@v1 | |
with: | |
install-pdiff: true | |
- name: Run pipeline with test data | |
run: | | |
nf-test test --tag samplesheet --ci |