Skip to content

Bump com.google.guava:guava from 27.0.1-jre to 32.0.0-jre #109

Bump com.google.guava:guava from 27.0.1-jre to 32.0.0-jre

Bump com.google.guava:guava from 27.0.1-jre to 32.0.0-jre #109

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
java:
- 8
- 11
- 17
steps:
- uses: actions/checkout@v2
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Maven Install Dependencies
run: mvn install -B -V -DskipTests -Dair.check.skip-all
- name: Maven Test
run: mvn clean install -B