From 27c73ce127c49069f493b8cb3039b151f6c3b307 Mon Sep 17 00:00:00 2001 From: KoonQi Date: Wed, 6 Sep 2023 01:05:09 +0800 Subject: [PATCH] test dont exit --- .github/workflows/build.yml | 6 +++--- pom.xml | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7bf8c51d..c4a51210c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: build-artifacts - path: /spring-petclinic/reports/history/ + path: target/ # Static Code Analysis with Checkstyle - name: Static Code Analysis with Checkstyle @@ -48,7 +48,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: static-code-analysis-reports - path: /spring-petclinic/reports/checkstyle/ + path: target/checkstyle-result.xml # Code Coverage - name: Code Coverage @@ -61,4 +61,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: code-coverage-reports - path: /spring-petclinic/reports/jacoco/ + path: target/site/jacoco/ diff --git a/pom.xml b/pom.xml index 4f790f1c9..b17d77958 100644 --- a/pom.xml +++ b/pom.xml @@ -195,6 +195,9 @@ org.apache.maven.plugins maven-checkstyle-plugin ${maven-checkstyle.version} + + false + com.puppycrawl.tools @@ -217,7 +220,6 @@ ${basedir} **/* **/.git/**/*,**/.idea/**/*,**/target/**/,**/.flattened-pom.xml,**/*.class - false check