From d1ec602bbee3db0d970d4a45695e23845ad4240d Mon Sep 17 00:00:00 2001 From: BillLthree <1784442321@qq.com> Date: Tue, 2 Aug 2022 22:01:25 +0800 Subject: [PATCH] Adding workflow/integration-test.yml --- .github/workflows/integration-test.yml | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/integration-test.yml diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml new file mode 100644 index 000000000..1a2208a25 --- /dev/null +++ b/.github/workflows/integration-test.yml @@ -0,0 +1,31 @@ +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