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 11:28:07 UTC

[cassandra-diff] branch gh-actions created (now 3da6f75)

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

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


      at 3da6f75  add github actions pull request verification

This branch includes the following new commits:

     new 3da6f75  add github actions pull request verification

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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


[cassandra-diff] 01/01: add github actions pull request verification

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3da6f7587fee1b9ded7fb2cc435b4ea577ecccd4
Author: Marcus Eriksson <ma...@apache.org>
AuthorDate: Tue Aug 27 13:28:01 2019 +0200

    add github actions pull request verification
---
 .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