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 <[email protected]> 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
