Skip to content

Fix whitespace-only interstitial conflicts being flagged as S+F #33

Fix whitespace-only interstitial conflicts being flagged as S+F

Fix whitespace-only interstitial conflicts being flagged as S+F #33

Workflow file for this run

name: Windows
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc
- name: Build weave-mcp
run: cargo build --release --target x86_64-pc-windows-msvc --bin weave-mcp --features vendored-openssl
- name: Build weave-cli
run: cargo build --release --target x86_64-pc-windows-msvc --bin weave --features vendored-openssl
- name: Build weave-driver
run: cargo build --release --target x86_64-pc-windows-msvc --bin weave-driver --features vendored-openssl
- name: Run tests
run: cargo test
- name: Check binaries exist
shell: pwsh
run: |
dir target/x86_64-pc-windows-msvc/release/weave-mcp.exe
dir target/x86_64-pc-windows-msvc/release/weave.exe
dir target/x86_64-pc-windows-msvc/release/weave-driver.exe