Skip to content

Bump com.google.guava:guava from 30.1.1-jre to 32.0.0-jre #5

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

Bump com.google.guava:guava from 30.1.1-jre to 32.0.0-jre #5

Workflow file for this run

name: Unit tests
on:
pull_request: { }
permissions:
contents: read
jobs:
java_unit_tests:
name: Java unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Cache Maven repository
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run tests
run: mvn --batch-mode test