Skip to content

DB-29-22 - Make CI Test Action More Configurable #1293

DB-29-22 - Make CI Test Action More Configurable

DB-29-22 - Make CI Test Action More Configurable #1293

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
tags:
- v*
jobs:
ce:
uses: ./.github/workflows/ce.yml
strategy:
fail-fast: false
matrix:
docker-tag: [ ci, lts, previous-lts ]
name: CE (${{ matrix.docker-tag }})
with:
docker-tag: ${{ matrix.docker-tag }}
ee:
uses: ./.github/workflows/ee.yml
strategy:
fail-fast: false
matrix:
docker-tag: [ 24.2.0-jammy ]
name: EE (${{ matrix.docker-tag }})
with:
docker-tag: ${{ matrix.docker-tag }}