Skip to content

Commit 03e8c81

Browse files
esolitosgitbutler-client
authored andcommitted
feat(build):migrate workflow for building sample apps
1 parent 99c0f47 commit 03e8c81

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/build.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Build Sample Apps
3+
4+
on:
5+
push:
6+
branches: ["master"]
7+
pull_request:
8+
branches: ["master"]
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

Comments
 (0)