File tree Expand file tree Collapse file tree 3 files changed +52
-0
lines changed Expand file tree Collapse file tree 3 files changed +52
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " maven"
4
+ directory : " json-smart"
5
+ schedule :
6
+ interval : " daily"
7
+ - package-ecosystem : " maven"
8
+ directory : " json-smart-action"
9
+ schedule :
10
+ interval : " daily"
Original file line number Diff line number Diff line change
1
+ name : json smart action unit tests
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - master
9
+
10
+ jobs :
11
+ publish :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Set up jdk 17
16
+ uses : actions/setup-java@v2
17
+ with :
18
+ java-version : ' 17'
19
+ distribution : ' temurin'
20
+ - name : unit tests
21
+ run : cd json-smart-action; mvn -B clean test
Original file line number Diff line number Diff line change
1
+ name : json smart unit tests
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - master
9
+
10
+ jobs :
11
+ publish :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Set up jdk 17
16
+ uses : actions/setup-java@v2
17
+ with :
18
+ java-version : ' 17'
19
+ distribution : ' temurin'
20
+ - name : unit tests
21
+ run : cd json-smart; mvn -B clean test
You can’t perform that action at this time.
0 commit comments