-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement load and flush Signed-off-by: yhmo <[email protected]> * Add for java doc Signed-off-by: yhmo <[email protected]>
- Loading branch information
Showing
61 changed files
with
5,418 additions
and
2,605 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pull_request_rules: | ||
- name: Test passed for code changed | ||
conditions: | ||
- base=master | ||
- "status-success=Java CI with Maven / build (pull_request)" | ||
actions: | ||
label: | ||
add: | ||
- ci-passed | ||
|
||
- name: Remove ci-passed when code check failed | ||
conditions: | ||
- base=master | ||
- "check-failure=Java CI with Maven / build (pull_request)" | ||
actions: | ||
label: | ||
remove: | ||
- ci-passed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Java CI with Maven | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn --batch-mode --update-snapshots verify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
filters: | ||
".*": | ||
reviewers: | ||
- xiaofan-luan | ||
- yhmo | ||
approvers: | ||
- xiaofan-luan | ||
- yhmo | ||
|
Oops, something went wrong.