Skip to content

WIP try to fix \W4 #1065

WIP try to fix \W4

WIP try to fix \W4 #1065

Workflow file for this run

name: "Windows"
# based on https://github.com/nlohmann/json/blob/develop/.github/workflows/windows.yml
on: [push, pull_request]
jobs:
msvc2019:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Configure
run: cmake -S . \
-B ${{runner.workspace}}/build \
--warn-uninitialized \
-D UREACT_PEDANTIC:BOOL=y \
-D UREACT_WERROR:BOOL=y \
-G "Visual Studio 16 2019"
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --parallel 10 --config Release
- name: Test
working-directory: ${{runner.workspace}}/build
run: ctest -j 10 -C Release --output-on-failure