Skip to content

Commit

Permalink
CI: run tests on older windows-core version
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
Kijewski committed Oct 17, 2023
1 parent 791a63e commit d2ee64a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -186,7 +192,7 @@ jobs:
exclude:
# Support for this target was added quite recently.
- target: aarch64-apple-ios-sim
- toolchain: "1.48"
toolchain: "1.48"
runs-on: macos-12
steps:
- name: Checkout
Expand Down

0 comments on commit d2ee64a

Please sign in to comment.