Skip to content

Update testcontainers-scala-core to 0.41.4 #415

Update testcontainers-scala-core to 0.41.4

Update testcontainers-scala-core to 0.41.4 #415

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ciJvms:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '17', '21' ]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'sbt'
- name: sbt ci ${{ github.ref }}
run: ./sbt ci
ci:
if: always()
runs-on: ubuntu-24.04
needs: [ ciJvms ]
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}