Skip to content

Added Java Streaming I/O for FASTA Files #113

Added Java Streaming I/O for FASTA Files

Added Java Streaming I/O for FASTA Files #113

Workflow file for this run

name: PR Build
on:
push:
branches:
- '!master'
pull_request:
branches:
- master
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# We do one OS only to reduce resource utilization. To do macOS to this would be needed:
#os: [ubuntu-20.04, macOS-latest]
os: [ubuntu-latest]
java: [17]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: ${{ matrix.java }}
- name: Build, test and integration test
run: mvn verify --no-transfer-progress