We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mvn verify
1 parent 33e6800 commit 0fe28a5Copy full SHA for 0fe28a5
.github/workflows/maven-verify.yml
@@ -0,0 +1,21 @@
1
+name: Run `maven verify` on JDK 17
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "dev/1.0" ]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
13
+ - name: Set up JDK 17
14
+ uses: actions/setup-java@v4
15
+ with:
16
+ java-version: '17'
17
+ distribution: 'temurin'
18
+ cache: maven
19
20
+ - name: Build and Verify with Maven
21
+ run: mvn -B verify
0 commit comments