From d0c362ae0f0f7ff4d49d899591c6cbb205e6b191 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 6 Jul 2020 14:31:56 +0800 Subject: Add preliminary windows test for building --- .github/workflows/rust.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to '.github/workflows/rust.yml') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7a7515e..d5e2791 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -26,3 +26,24 @@ jobs: cargo diet -n --package-size-limit 30KB + build-and-test-on-windows: + name: Windows + runs-on: windows-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: default + toolchain: stable + override: true + - name: "Check (crossterm)" + uses: actions-rs/cargo@v1 + with: + command: check + args: --all --bins --tests --examples + - name: "Test (crossterm)" + uses: actions-rs/cargo@v1 + with: + command: test + args: --all + -- cgit v1.2.3