Skip to content

maven build github ci #73

maven build github ci

maven build github ci #73

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: JavaDBF CI
on:
push:
branches: [ main, 0.x ]
pull_request:
branches: [ main, 0.x ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11 ]
name: Java ${{matrix.java}}
steps:
- uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{matrix.java}}
- name: Build with Maven
run: mvn -B -Dgpg.skip=true -Dmaven.javadoc.skip=true clean package verify