docs: fix Nextflow CLI flag for -quiet in README #28
Workflow file for this run
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: CI | |
on: [push] | |
jobs: | |
test: | |
name: Build and test the plugin | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
JAVA_VERSION: [8, 11, 17, 21] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Setup Java ${{ matrix.JAVA_VERSION }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{matrix.JAVA_VERSION}} | |
architecture: x64 | |
distribution: adopt | |
- name: Compile | |
run: | | |
make clean | |
make compile | |
make compile-with-nextflow | |
- name: Test | |
run: make test | |
env: | |
GRADLE_OPTS: '-Dorg.gradle.daemon=false' | |
- name: Build | |
run: make build | |
- name: Install | |
run: make install-local |