Skip to content

Improved the numerical stability of summation #39

Improved the numerical stability of summation

Improved the numerical stability of summation #39

Workflow file for this run

name: maven
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Disabled for Java 10 due to Java compiler bug
java: [ 8, 9, 11, 12, 13, 14, 15, 16, 17 ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- run: mvn -B package --file pom.xml