Skip to content

fix: upgrade org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0 (#9) #87

fix: upgrade org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0 (#9)

fix: upgrade org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0 (#9) #87

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, macOS-latest]
java: [8]
fail-fast: false
max-parallel: 4
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Test with Maven
run: mvn test -B --file pom.xml