You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ma...@apache.org on 2019/08/27 13:14:59 UTC

[cassandra-diff] branch master updated: add github actions pull request verification (#1)

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

marcuse pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-diff.git


The following commit(s) were added to refs/heads/master by this push:
     new d602615  add github actions pull request verification (#1)
d602615 is described below

commit d6026154764a1e0e612ea675b5829987fa7414ab
Author: Marcus Eriksson <ma...@apache.org>
AuthorDate: Tue Aug 27 15:14:54 2019 +0200

    add github actions pull request verification (#1)
---
 .github/workflows/maven.yml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000..b4580b4
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,20 @@
+name: Java CI
+
+on:
+  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 Maven
+      run: mvn package --file pom.xml


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org