Skip to content

Merge pull request #2507 from hgschmie/java21-fix #34

Merge pull request #2507 from hgschmie/java21-fix

Merge pull request #2507 from hgschmie/java21-fix #34

Workflow file for this run

---
name: Run all container database tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
slow-tests:
name: Run slow tests
runs-on: ubuntu-latest
strategy:
matrix:
test-version: [ 1.18.3, 1.19.0 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
cache: maven
- name: run tests
env:
MAVEN_CONFIG: "-B -fae"
run: |
make install-fast
- name: run slow tests
env:
MAVEN_CONFIG: "-B -fae -Ddep.testcontainers.version=${{ matrix.test-version }}"
run: |
make run-slow-tests