We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0ff99e commit aed1bb3Copy full SHA for aed1bb3
1 file changed
.github/workflows/maven.yml
@@ -0,0 +1,20 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Set up JDK 8
15
+ uses: actions/setup-java@v4
16
+ with:
17
+ java-version: '8'
18
+ distribution: 'temurin'
19
+ - name: Build
20
+ run: mvn clean verify
0 commit comments