From 38a637888e238b6a10af360b4eeff93d3a91ab26 Mon Sep 17 00:00:00 2001 From: Wiktor Kwapisiewicz Date: Wed, 29 May 2024 08:53:39 +0200 Subject: [PATCH] WIP: Add CI for building the project on Windows Signed-off-by: Wiktor Kwapisiewicz --- .github/workflows/win-build.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/win-build.yml diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml new file mode 100644 index 00000000..f6033328 --- /dev/null +++ b/.github/workflows/win-build.yml @@ -0,0 +1,15 @@ +name: CI + +on: + pull_request: + push: + branches: [ main ] + workflow_dispatch: + +jobs: + check-win-build: + name: Check build on Windows + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - run: cargo build --features generate-bindings,bundled