Skip to content

Bumps testcontainers-java to 1.19.1 and adds in MinIO #126

Bumps testcontainers-java to 1.19.1 and adds in MinIO

Bumps testcontainers-java to 1.19.1 and adds in MinIO #126

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