We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2456d07 commit 941be6dCopy full SHA for 941be6d
.github/workflows/mvn-test.yaml
@@ -0,0 +1,14 @@
1
+run-name: "Run maven tests"
2
+on: pull_request
3
+steps:
4
+ - uses: actions/checkout@v4
5
+ - uses: actions/setup-java@v4
6
+ with:
7
+ java-version: '17'
8
+ distribution: 'corretto'
9
+ - run: mvn --batch-mode clean test
10
+ name: Run mvn test
11
+ - uses: test-summary/action@v2
12
+ name: Test summary
13
14
+ paths: "target/surefire-reports/TEST-*.xml"
pom.xml
@@ -78,4 +78,13 @@
78
</plugin>
79
</plugins>
80
</build>
81
+ <reporting>
82
+ <plugins>
83
+ <plugin>
84
+ <groupId>org.apache.maven.plugins</groupId>
85
+ <artifactId>maven-surefire-report-plugin</artifactId>
86
+ <version>3.3.1</version>
87
+ </plugin>
88
+ </plugins>
89
+ </reporting>
90
</project>
0 commit comments