Add test case for element ordering in DSS fault #441
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: Integration tests (Ubuntu, OpenJDK17) | |
on: [push, pull_request] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: check mvn version | |
run: echo "MAVEN_VERSION=$(mvn -v)" | |
- name: check java version | |
run: echo "JAVA_VERSION=$(java -version)" | |
- name: Build in jdk11 | |
run: mvn -B clean install -DskipTests --file pom.xml | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: check mvn version | |
run: echo "MAVEN_VERSION=$(mvn -v)" | |
- name: check java version | |
run: echo "JAVA_VERSION=$(java -version)" | |
- name: JDK 17 Tests | |
run: mvn -B clean install --file integration/pom.xml -fae |