Split private functions sources #295
Workflow file for this run
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] | |
| pull_request: | |
| env: | |
| CXXFLAGS: /WX /W3 /wd4244 | |
| jobs: | |
| cmake: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-2022 | |
| - windows-2025 | |
| BUILD_SHARED_LIBS: | |
| - "TRUE" | |
| - "FALSE" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Configure CMake | |
| run: cmake -B build -DBUILD_SHARED_LIBS=${{ matrix.BUILD_SHARED_LIBS }} | |
| - name: Build tests | |
| run: cmake --build build | |
| - name: Run tests | |
| run: ctest --output-on-failure --test-dir build | |
| meson: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-2022 | |
| - windows-2025 | |
| steps: | |
| - name: Install Meson | |
| run: pip install meson ninja | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Configure Meson | |
| run: meson setup build -Dvsenv=true | |
| - name: Run tests | |
| run: meson test -C build |