Update DelegateMQ library #54
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) | |