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 7d2377a commit 1a14eecCopy full SHA for 1a14eec
.github/workflows/master.yaml
@@ -12,7 +12,7 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
16
with:
17
submodules: 'recursive'
18
@@ -49,3 +49,21 @@ jobs:
49
50
- name: Build with clang++
51
run: cmake --build build-clang
52
+ windows_build:
53
+ runs-on: windows-latest
54
+ continue-on-error: true
55
+ steps:
56
57
+ with:
58
+ submodules: 'recursive'
59
+
60
+ - name: Configure CMake for MSVC
61
+ run: cmake -S test -B build-msvc
62
63
+ - name: Build with MSVC
64
+ run: cmake --build build-msvc
65
66
+ - name: Test with MSVC
67
+ run: |
68
+ cd build-msvc
69
+ ctest
0 commit comments