Skip to content

Fix big-buck-bunny and Lombok build issues #13

Fix big-buck-bunny and Lombok build issues

Fix big-buck-bunny and Lombok build issues #13

Workflow file for this run

name: Parser Library Java CI with Maven
on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop
- master
jobs:
build:
runs-on: ${{ matrix.os }}
permissions:
id-token: write
contents: read
strategy:
matrix:
os: [ macos-10.15, ubuntu-18.04, windows-2019]
java: [ 8, 11, 16 ]
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
cache: maven
- name: Build
run: mvn clean install
shell: bash