Update DelegateMQ library #13
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-latest # Use Windows environment for the build | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 # Checkout the repository code | |
| - name: Install libcurl via vcpkg | |
| run: | | |
| vcpkg install curl:x64-windows | |
| vcpkg integrate install | |
| - name: Configure CMake | |
| run: cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" | |
| - name: Build | |
| run: cmake --build build --config Release | |
| - name: Run Async-HTTPApp | |
| run: .\build\Release\Async-HTTPApp.exe | |
| continue-on-error: true # Network requests to httpbin.org may be flaky in CI |