Skip to content

Bump testcontianers-java 1.19.0 #121

Bump testcontianers-java 1.19.0

Bump testcontianers-java 1.19.0 #121

Workflow file for this run

name: CI
on:
pull_request:
branches: ['*']
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest]
java:
- 8
- 11
- 17
# - graalvm-ce-java11@20.3.0
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: temurin # See 'Supported distributions' for available options
java-version: ${{ matrix.java }}
check-latest: true
- name: Restore cache
uses: actions/cache@v2
with:
path: |
~/.sbt
~/.ivy2/cache
~/.cache/coursier
key: cache-v1-${{ hashFiles('build.sbt') }}
restore-keys: |
cache-v1-
- name: Compile and Test
run: sbt +test