Skip to content

Merge branch 'dev' into 529-fr-plugins-create-s3block-storage-backup-… #54

Merge branch 'dev' into 529-fr-plugins-create-s3block-storage-backup-…

Merge branch 'dev' into 529-fr-plugins-create-s3block-storage-backup-… #54

name: CI - Plugin - Alert Messenger
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ "**" ]
paths:
- "software/plugins/alert-messenger/**"
- ".github/workflows/plugin-alertMessenger.yml"
pull_request:
branches: [ "**" ]
paths:
- "software/plugins/alert-messenger/**"
- ".github/workflows/plugin-alertMessenger.yml"
workflow_call:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
defaults:
run:
working-directory: "software/plugins/alert-messenger/"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
uses: ./.github/workflows/wf-gradleBuild.yaml
with:
path: "software/plugins/alert-messenger/"
unitTest:
uses: ./.github/workflows/wf-gradleUnitTest.yaml
with:
path: "software/plugins/alert-messenger/"
intTest:
uses: ./.github/workflows/wf-gradleQuarkusIntTest.yaml
strategy:
matrix:
containerBased: [ false ] # TODO:: enable true
with:
path: "software/plugins/alert-messenger/"
containerBased: ${{ matrix.containerBased }}