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

tzulitai pushed a commit to branch github-actions-test
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit e1a6753dcb44c0d2f758d25d0fd6c3723048869c
Author: Tzu-Li (Gordon) Tai <[email protected]>
AuthorDate: Wed Nov 11 14:32:46 2020 +0800

    Trying out GHA
---
 .github/workflows/build.yml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..07db579
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,16 @@
+name: Java CI
+
+on: [push, pull_request]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Set up JDK 1.8
+        uses: actions/setup-java@v1
+        with:
+          java-version: 1.8
+      - name: Build with Maven
+        run: mvn clean install -Prun-e2e-tests
\ No newline at end of file

Reply via email to