You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by ta...@apache.org on 2021/02/08 18:55:56 UTC

[unomi] branch move-ci-github-workflows created (now 4314f02)

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

taybou pushed a change to branch move-ci-github-workflows
in repository https://gitbox.apache.org/repos/asf/unomi.git.


      at 4314f02  Create maven.yml

This branch includes the following new commits:

     new 4314f02  Create maven.yml

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.



[unomi] 01/01: Create maven.yml

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

taybou pushed a commit to branch move-ci-github-workflows
in repository https://gitbox.apache.org/repos/asf/unomi.git

commit 4314f025c90a8c9c2d9ae500e736d9e2b86110c0
Author: MT BENTERKI <be...@gmail.com>
AuthorDate: Mon Feb 8 19:55:51 2021 +0100

    Create maven.yml
---
 .github/workflows/maven.yml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000..1859acc
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,24 @@
+# This workflow will build a Java project with Maven
+# 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: Set up JDK 1.8
+      uses: actions/setup-java@v1
+      with:
+        java-version: 1.8
+    - name: Build
+      run: mvn -U -B -e clean install -DskipTests