Fix whitespace-only interstitial conflicts being flagged as S+F #33
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |