Skip to content

Fetch commints from master branch #13

Fetch commints from master branch

Fetch commints from master branch #13

Workflow file for this run

# 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: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3
with:
ref: ${{ github.ref }}
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
java-version: 8.0
distribution: 'adopt'
architecture: x64
- name: Build with Maven
run: mvn -B package --file pom.xml