Skip to content

Switch to testcontainers-scala-core #371

Switch to testcontainers-scala-core

Switch to testcontainers-scala-core #371

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ciJvms:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '17', '21' ]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-java@v4.1.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'sbt'
- name: sbt ci ${{ github.ref }}
run: ./sbt ci
ci:
runs-on: ubuntu-22.04
needs: [ ciJvms ]
steps:
- name: Aggregate of lint, and all tests
run: echo "ci passed"