From: Adrián Arroyo Calle Date: Mon, 12 Sep 2022 21:24:40 +0000 (+0200) Subject: Add Windows MSYS2 X-Git-Tag: v0.9.1^2~12 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=ec5430826ef52551e58aa8e363ab1ca37d5c65db;p=scryer-prolog.git Add Windows MSYS2 --- 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