Skip to content

Commit

Permalink
ci: ensure build on Windows (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy authored Sep 20, 2024
1 parent 896a348 commit 630ed37
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,13 @@ jobs:
toolchain: ${{ env.RUST_VERSION }}
components: rustfmt
- uses: actions-rust-lang/rustfmt@v1

ensure-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
target: x86_64-pc-windows-msvc
- run: cargo check --target x86_64-pc-windows-msvc --workspace

0 comments on commit 630ed37

Please sign in to comment.