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