From 912d5566bc7779bd3ba4fbac22e059ede32b03d3 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Mon, 1 Jan 2024 13:00:55 -0800 Subject: [PATCH] Attempting to add Windows CI --- .github/workflows/rust.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a0cfd3a..5b8b06c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -44,3 +44,15 @@ jobs: - name: Run default features unit tests run: | cargo test --all-features --all-targets + + test-windows: + name: Test on MSRV + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + + - uses: dtolnay/rust-toolchain@stable + + - name: Run default features unit tests + run: | + cargo test --all-features --all-targets