Add Windows MSYS2

This commit is contained in:
Adrián Arroyo Calle
2022-09-12 23:24:40 +02:00
committed by Mark Thom
parent b2cccab768
commit ec5430826e

View File

@@ -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