From ec5430826ef52551e58aa8e363ab1ca37d5c65db Mon Sep 17 00:00:00 2001 From: =?utf8?q?Adri=C3=A1n=20Arroyo=20Calle?= Date: Mon, 12 Sep 2022 23:24:40 +0200 Subject: [PATCH] Add Windows MSYS2 --- .github/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db4801c9..a11d7439 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,3 +52,17 @@ jobs: crate: cargo-msrv - name: Verify MSRV run: cargo msrv --verify + windows: + runs-on: windows-latest + steps: + - name: Setup MSYS2 + uses: msys2/setup-msys2@v2 + with: + update: true + install: >- + base-devel + mingw-w64-x86_64-rust + - name: Checkout sources + uses: actions/checkout@v3 + - name: Test on Windows + run: cargo test --verbose --all -- 2.54.0