Skip to content

Update to latest DelegateMQ library. Minor documentation updates. #15

Update to latest DelegateMQ library. Minor documentation updates.

Update to latest DelegateMQ library. Minor documentation updates. #15

Workflow file for this run

name: Ubuntu
on:
push:
branches:
- main # Trigger on push
pull_request:
branches:
- main # Trigger on pull
jobs:
build:
runs-on: ubuntu-latest # Use Ubuntu environment for the build
steps:
- name: Checkout code
uses: actions/checkout@v2 # Checkout the repository code
- name: Configure CMake
run: cmake -S . -B build -DENABLE_IT=ON # Configure CMake to generate build files in 'build' directory
- name: Build
run: cmake --build build # Build the project using CMake
- name: Run IntegrationTestFrameworkApp
run: ./build/IntegrationTestFrameworkApp # Run the built executable