Skip to content

Update DelegateMQ library #54

Update DelegateMQ library

Update DelegateMQ library #54

Workflow file for this run

name: Windows
on:
push:
branches:
- main # Trigger on push
pull_request:
branches:
- main # Trigger on pull
jobs:
build:
runs-on: windows-2022 # Use Windows environment for the build
steps:
- name: Checkout code
uses: actions/checkout@v4 # Checkout the repository code
- name: Configure CMake
run: cmake -S . -B build -DENABLE_IT=ON # Configure CMake for Visual Studio
- name: Build
run: cmake --build build --config Release # Build the project using CMake with Release configuration
- name: Run IntegrationTestFrameworkApp
run: .\build\Release\IntegrationTestFrameworkApp.exe # Run the built executable (adjust path for MSBuild)