name: Windows CI
on:
push:
branches:
pull_request:
jobs:
validate:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
# Verify we can build
- run: cargo build --workspace
# Verify the tests pass
- run: cargo test --workspace