Skip to content

chore(deps-dev): bump org.testcontainers:testcontainers from 1.16.2 to 1.20.4 #161

chore(deps-dev): bump org.testcontainers:testcontainers from 1.16.2 to 1.20.4

chore(deps-dev): bump org.testcontainers:testcontainers from 1.16.2 to 1.20.4 #161

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