Merge pull request #3446 from arunans23/master #1583
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: All Tests ( openjdk8 ) | |
on: [push] | |
jobs: | |
others: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: joschi/setup-jdk@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Build with Maven | |
run: mvn -B clean install --file pom.xml -fae | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Support longpaths | |
run: git config --system core.longpaths true | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: joschi/setup-jdk@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Build with Maven | |
run: mvn -B clean install --file pom.xml -fae |