Skip to content

Build(deps-dev): Bump org.testcontainers:testcontainers from 1.19.8 to 1.20.0 #340

Build(deps-dev): Bump org.testcontainers:testcontainers from 1.19.8 to 1.20.0

Build(deps-dev): Bump org.testcontainers:testcontainers from 1.19.8 to 1.20.0 #340

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (if possible)
java: [ 11, 17, 21, 22 ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn --batch-mode --no-transfer-progress verify