We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99c0f47 commit 03e8c81Copy full SHA for 03e8c81
.github/workflows/build.yml
@@ -0,0 +1,27 @@
1
+---
2
+name: Build Sample Apps
3
+
4
+on:
5
+ push:
6
+ branches: ["master"]
7
+ pull_request:
8
9
10
+defaults:
11
+ run:
12
+ shell: bash
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
20
+ - uses: actions/setup-java@v4
21
+ with:
22
+ distribution: "temurin"
23
+ java-version: "17"
24
25
+ - name: Build
26
+ run: |
27
+ mvn -V --batch-mode --no-snapshot-updates install
0 commit comments