Skip to content

chore(deps-dev): bump commons-io:commons-io from 2.11.0 to 2.16.0 #147

chore(deps-dev): bump commons-io:commons-io from 2.11.0 to 2.16.0

chore(deps-dev): bump commons-io:commons-io from 2.11.0 to 2.16.0 #147

Workflow file for this run

---
name: Build and test
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
java: [8, 11, 13]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- name: Build it with Maven
run: |
git config --global user.email "host@example.com"
git config --global user.name "Host"
mvn -B clean verify -Pqulice -Pjacoco