We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fd7652 commit 373f1d1Copy full SHA for 373f1d1
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+
2
+name: Build & Tests
3
4
+on:
5
+ push:
6
+ branches: [ main ]
7
+ pull_request:
8
9
10
+jobs:
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - name: Set up JDK 11
18
+ uses: actions/setup-java@v3
19
+ with:
20
+ java-version: '11'
21
+ distribution: 'temurin'
22
+ cache: maven
23
+ - name: Build with Maven
24
+ run: mvn -B package --file pom.xml
0 commit comments