Skip to content

Commit f076949

Browse files
authored
[app-platform] 添加 app-platform 的 github action 文件 (#37)
1 parent baac452 commit f076949

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: App Platform Java Compile
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
paths:
8+
- 'app-builder/**'
9+
- '!app-builder/fel/python/**'
10+
- 'app-engine/**'
11+
- '!app-engine/frontend/**'
12+
- 'app-image/**'
13+
- 'app-knowledge/**'
14+
- 'carver/**'
15+
- 'common/**'
16+
- 'store/**'
17+
pull_request:
18+
branches:
19+
- 'main'
20+
paths:
21+
- 'app-builder/**'
22+
- '!app-builder/fel/python/**'
23+
- 'app-engine/**'
24+
- '!app-engine/frontend/**'
25+
- 'app-image/**'
26+
- 'app-knowledge/**'
27+
- 'carver/**'
28+
- 'common/**'
29+
- 'store/**'
30+
31+
jobs:
32+
build:
33+
runs-on: ubuntu-latest
34+
steps:
35+
- uses: actions/checkout@v4
36+
- name: Set up JDK 17
37+
uses: actions/setup-java@v4
38+
with:
39+
java-version: '17'
40+
distribution: 'temurin'
41+
cache: maven
42+
- name: Build with Maven
43+
run: mvn clean install

0 commit comments

Comments
 (0)