Skip to content

Commit b374087

Browse files
ci(workflow): add Windows x64 development workflow with MSVC 2022
1 parent bfc8c70 commit b374087

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Windows Development Build & Test
2+
3+
on:
4+
push:
5+
branches: [ "dev" ]
6+
pull_request:
7+
branches: [ "dev" ]
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Setup MSVC
17+
uses: ilammy/msvc-dev-cmd@v1
18+
19+
with:
20+
arch: x64
21+
22+
- name: Configure CMake
23+
run: |
24+
cmake -B ${{ github.workspace }}/build -G "Visual Studio 17 2022"
25+
26+
- name: Test
27+
run: |
28+
cd scripts
29+
.\run_test.py

0 commit comments

Comments
 (0)