Skip to content

Bump testcontainers.version from 1.18.3 to 1.19.1 #174

Bump testcontainers.version from 1.18.3 to 1.19.1

Bump testcontainers.version from 1.18.3 to 1.19.1 #174

name: CI with Maven - Test and Build
# Trigger the workflow pull request,
# but only for the main branch
on:
pull_request:
branches: [ main ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test and Build with Maven
run: ./mvnw --batch-mode clean verify -DskipIntegrationTests=false