We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc8fc7 commit 71f601fCopy full SHA for 71f601f
.github/workflows/unittests_windows.yml
@@ -13,17 +13,19 @@ jobs:
13
WinVS2019:
14
name: Windows VS2019
15
runs-on: windows-2019
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ standard: [14, 20]
20
21
steps:
22
- uses: actions/checkout@v2
23
24
- name: CMake build tests Windows
25
shell: bash
26
run: |
- mkdir build
- cd build
- cmake ..
- cmake --build . --config Release
27
+ cmake -S . -B build -DCMAKE_CXX_STANDARD=${{ matrix.standard }}
28
+ cmake --build build --config Release
29
30
- name: CMake run tests Windows
31
0 commit comments