[WIP] [OSPP] [2.2.x] Adapt to all client types and common gateways for the label routing module #1379
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 Testing | |
on: | |
push: | |
branches: | |
- 2.2.x | |
pull_request: | |
branches: | |
- 2.2.x | |
jobs: | |
integration-testing: | |
name: Integration Testing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Dependies Cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Compile & Checkstyle | |
run: mvn clean compile | |
- name: Testing | |
run: mvn clean test | |
# run: mvn clean -Dit.enabled=true test |