Skip to content

Commit 69a66b6

Browse files
author
Nic Holthaus
committed
CICD: badge update
1 parent b13025f commit 69a66b6

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/msvc-2022.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: msvc-2022
2+
3+
on:
4+
push:
5+
branches: [ '**' ] # Run on all branches
6+
pull_request:
7+
branches: [ '**' ] # Run on all branches
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+
run: |
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

Comments
 (0)