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 b13025f commit 69a66b6Copy full SHA for 69a66b6
.github/workflows/msvc-2022.yaml
@@ -0,0 +1,28 @@
1
+name: msvc-2022
2
+
3
+on:
4
+ push:
5
+ branches: [ '**' ] # Run on all branches
6
+ pull_request:
7
8
9
+jobs:
10
+ build-windows:
11
+ name: Build on Windows with Visual Studio 2022
12
+ runs-on: windows-latest
13
14
+ steps:
15
+ - name: Checkout Repository
16
+ uses: actions/checkout@v4
17
18
+ - name: Configure CMake
19
+ run: |
20
+ cmake -B build -G "Visual Studio 17 2022" -A x64
21
22
+ - name: Build
23
24
+ cmake --build build --config Release
25
26
+ - name: Run Tests
27
+ working-directory: build
28
+ run: ctest -C Release --output-on-failure
0 commit comments