converted hmac_utils.mqh and test_hmac.mq5 from UTF‑16 LE (each begin… #121
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: CI-Win | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/** | |
| - stable | |
| pull_request: | |
| branches: | |
| - main | |
| - release/** | |
| - codex/** | |
| jobs: | |
| Tests-Win: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| std: [11, 17] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: msys2/setup-msys2@v2 | |
| with: | |
| update: true | |
| msystem: MINGW64 | |
| install: >- | |
| mingw-w64-x86_64-toolchain | |
| mingw-w64-x86_64-cmake | |
| mingw-w64-x86_64-make | |
| - name: Configure | |
| shell: msys2 {0} | |
| run: cmake -S . -B build -DBUILD_TESTS=ON -DCMAKE_CXX_STANDARD=${{ matrix.std }} | |
| - name: Build | |
| shell: msys2 {0} | |
| run: cmake --build build | |
| - name: Run tests | |
| shell: msys2 {0} | |
| run: ctest --test-dir build --output-on-failure |