Skip to content

Commit

Permalink
run both windows toolchains (#298)
Browse files Browse the repository at this point in the history
Maybe that way certain errors can be found related to windows error
codes.
  • Loading branch information
Byron committed Apr 6, 2022
1 parent f041c00 commit e7b9705
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -32,14 +32,22 @@ jobs:
run: make tests

build-and-test-on-windows:
strategy:
matrix:
include:
- target: x86_64-pc-windows-gnu
rust: stable-gnu
- target: x86_64-pc-windows-msvc
rust: stable-msvc
name: Windows
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: stable
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
override: true
- uses: Swatinem/rust-cache@v1
- name: "Check default features build on windows"
Expand Down

0 comments on commit e7b9705

Please sign in to comment.