Skip to content

Commit 5f4589b

Browse files
committed
Add Windows build verification
1 parent d2e144d commit 5f4589b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
build:
12+
runs-on: windows-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Configure
16+
run: cmake -S . -B build -A x64
17+
- name: Build
18+
run: cmake --build build --config Release
19+
- name: Test
20+
run: ctest --test-dir build -C Release --output-on-failure

0 commit comments

Comments
 (0)