Skip to content

Bump commons-codec:commons-codec from 1.17.1 to 1.17.2 in /software/oqm-core-api #559

Bump commons-codec:commons-codec from 1.17.1 to 1.17.2 in /software/oqm-core-api

Bump commons-codec:commons-codec from 1.17.1 to 1.17.2 in /software/oqm-core-api #559

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI - Core - API
# 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/oqm-core-api/**"
- ".github/workflows/core-api.yml"
pull_request:
branches: [ "**" ]
paths:
- "software/oqm-core-api/**"
- ".github/workflows/core-api.yml"
workflow_call:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
defaults:
run:
working-directory: "software/oqm-core-api"
# 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/oqm-core-api"
unitTest:
uses: ./.github/workflows/wf-gradleUnitTest.yaml
with:
path: "software/oqm-core-api"
intTest:
uses: ./.github/workflows/wf-gradleQuarkusIntTest.yaml
strategy:
matrix:
containerBased: [ false ] # TODO:: enable true
with:
path: "software/oqm-core-api"
containerBased: ${{ matrix.containerBased }}