From 16fd1b5f1472bfd1008d246c9184f163f511a7f3 Mon Sep 17 00:00:00 2001 From: Subhrodip Mohanta Date: Thu, 11 Jun 2020 06:05:39 +0530 Subject: [PATCH] Create maven.yml --- .github/workflows/maven.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..1a0bf0e --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,21 @@ +name: Java CI with Maven + +on: + push: + branches: [ '**' ] + pull_request: + branches: [ master, develop, feature/**, dev/** ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.11 + uses: actions/setup-java@v1 + with: + java-version: 1.11 + - name: Build with Maven + run: mvn -B package --file pom.xml