Skip to content

Commit 5b94d1e

Browse files
committed
WIP: Add CI for building the project on Windows
Signed-off-by: Wiktor Kwapisiewicz <[email protected]>
1 parent a4e61d4 commit 5b94d1e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/win-build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [ main ]
7+
workflow_dispatch:
8+
9+
jobs:
10+
check-win-build:
11+
name: Check build on Windows
12+
runs-on: windows-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Add msbuild to PATH
16+
uses: microsoft/setup-msbuild@v2
17+
- run: cargo build --features generate-bindings,bundled

0 commit comments

Comments
 (0)