Skip to content

Add requires to nf-test.config in order to specify minimal nf-tes… #556

Add requires to nf-test.config in order to specify minimal nf-tes…

Add requires to nf-test.config in order to specify minimal nf-tes… #556

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '21' ]
nextflow: ['latest-edge', 'latest-stable' ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Setup Nextflow ${{ matrix.nextflow }}
uses: nf-core/setup-nextflow@v1
with:
version: "${{ matrix.nextflow }}"
- name: Test
run: mvn install