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 d886e2c commit fe7bf44Copy full SHA for fe7bf44
1 file changed
.github/workflows/build.yaml
@@ -0,0 +1,31 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ name: Build (${{ matrix.runner }})
12
+ runs-on: ${{ matrix.runner }}
13
+ strategy:
14
+ matrix:
15
+ runner:
16
+ - ubuntu-24.04
17
+ - ubuntu-24.04-arm
18
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
23
+ - name: Set up JDK 11
24
+ uses: actions/setup-java@v4
25
+ with:
26
+ java-version: "11"
27
+ distribution: temurin
28
+ cache: maven
29
30
+ - name: Build with Maven
31
+ run: mvn --batch-mode verify
0 commit comments