We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed4322 commit 2bc6035Copy full SHA for 2bc6035
1 file changed
.github/workflows/mvn-verify.yaml
@@ -0,0 +1,16 @@
1
+name: mvn-verify
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ mvn-verify:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - name: Set up JDK 11
10
+ uses: actions/setup-java@v4
11
+ with:
12
+ java-version: '11'
13
+ distribution: 'temurin'
14
+ cache: maven
15
+ - name: Run the Maven verify phase
16
+ run: mvn --batch-mode verify
0 commit comments