This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-manager.git


The following commit(s) were added to refs/heads/master by this push:
     new e8d98a5  Enable github actions (#248)
e8d98a5 is described below

commit e8d98a54d8ae9181360f590965cfb581a9c15111
Author: Guangning <[email protected]>
AuthorDate: Mon Jan 13 19:58:17 2020 +0800

    Enable github actions (#248)
    
    ### Motivation
    
    The current contributor cannot trigger the Jenkins test, so it enables 
GitHub actions.
    
    ### Modifications
    
    * Enable GitHub actions
---
 .github/workflows/gradle.yml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
new file mode 100644
index 0000000..b8d0e2d
--- /dev/null
+++ b/.github/workflows/gradle.yml
@@ -0,0 +1,23 @@
+name: Java CI
+
+on: 
+  push:
+    branches:
+      - master
+  pull_request:
+    branches:
+      - master
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v1
+    - name: Set up JDK 1.8
+      uses: actions/setup-java@v1
+      with:
+        java-version: 1.8
+    - name: Build with Gradle
+      run: ./gradlew build

Reply via email to