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.
1 parent 3a7ff60 commit 803f410Copy full SHA for 803f410
.github/workflows/build.yml
@@ -0,0 +1,18 @@
1
+name: Build workflow
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v4
12
+ - name: JDK
13
+ uses: actions/setup-java@v4
14
+ with:
15
+ distribution: 'temurin'
16
+ java-version: '21'
17
+ - name: Maven Clean Verify
18
+ run: mvn -B -ntp clean verify
0 commit comments