Skip to content

Bugfix for GenomeLibrary.inputStats #316

Bugfix for GenomeLibrary.inputStats

Bugfix for GenomeLibrary.inputStats #316

Workflow file for this run

name: Build and test
permissions:
contents: read
on:
pull_request:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 17
- os: windows-latest
java: 17
- os: macOS-latest
java: 17
runs-on: ${{ matrix.os }}
env:
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "${{ matrix.java }}"
cache: sbt
- uses: sbt/setup-sbt@v1
with:
sbt-runner-version: 1.9.9
- name: Build and Test
run: sbt -v +test
shell: bash