Skip to content

only classification supported #6

only classification supported

only classification supported #6

Workflow file for this run

name: Test Pipeline
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nextflow
run: |
wget -qO- https://get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
nextflow -version
- name: Test pipeline with stub-run
run: |
nextflow run main.nf \
-params-file params/params_stub.yml \
-stub-run \
-profile stub