mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 00:05:50 +00:00
test dont exit
This commit is contained in:
parent
c3967cc209
commit
27c73ce127
2 changed files with 6 additions and 4 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -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/
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -195,6 +195,9 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>${maven-checkstyle.version}</version>
|
||||
<configuration>
|
||||
<failOnViolation>false</failOnViolation>
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.puppycrawl.tools</groupId>
|
||||
|
@ -217,7 +220,6 @@
|
|||
<sourceDirectories>${basedir}</sourceDirectories>
|
||||
<includes>**/*</includes>
|
||||
<excludes>**/.git/**/*,**/.idea/**/*,**/target/**/,**/.flattened-pom.xml,**/*.class</excludes>
|
||||
<failOnViolation>false</failOnViolation>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
|
|
Loading…
Reference in a new issue