Merge branch 'master' into dependabot/maven/logback.version-1.5.15 #627
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: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# For jblas, see https://github.com/mikiobraun/jblas/wiki/Missing-Libraries | |
# May not be needed as jblas 1.2.5 bundles libgfortran4 | |
# See https://github.com/jblas-project/jblas/issues/87 | |
- name: Install jblas | |
run: sudo apt-get install -y libgfortran5 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml |