Skip to content

Commit

Permalink
Enable MSRV checks on windows (#298)
Browse files Browse the repository at this point in the history
Now that the `windows` crate is part of the dependency tree it must
be tested specifically for MSRV support.

Related to microsoft/windows-rs#1699, let's
hope that edition 2018 can be supported or we have to wait.
  • Loading branch information
Byron committed Apr 18, 2022
1 parent 5ee2307 commit 504fe78
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/msrv.yml
Expand Up @@ -14,7 +14,12 @@ name: Minimum Supported Rust Version
jobs:
rustfmt:
name: cargo check MSRV
runs-on: ubuntu-latest
strategy:
matrix:
os:
- windows-2019
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit 504fe78

Please sign in to comment.