From ed6476b174ec48813b5acc60434a5e930742192a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Tue, 17 Oct 2023 05:03:14 +0200 Subject: [PATCH] CI: run tests on older windows-core version `windows-core >= 0.51` uses `edition = "2021"`, but users of the library can can use `windows-core == 0.50` to be rust 1.48 compatible. --- .github/workflows/rust.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7b1b9e4..aa6315c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,6 +23,12 @@ jobs: versions: - "" - "-Zminimal-versions" + exclude: + # `windows-core >= 0.51` uses `edition = "2021"`, but users of the library can can use + # `windows-core == 0.50` to be rust 1.48 compatible. + - runs-on: windows-2022 + toolchain: "1.48" + versions: "" runs-on: ${{ matrix.runs-on }} steps: - name: Checkout