Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: actually test minimal versions
Browse files Browse the repository at this point in the history
chris13524 committed Feb 15, 2024
1 parent 8a70282 commit d3ad57a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -55,12 +55,31 @@ jobs:
profile: default
override: true

# Install nightly which is required for supporting `-Z minimal-versions`
# https://github.com/rust-lang/cargo/issues/5657
- name: "Install Rust nightly"
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal

- uses: Swatinem/rust-cache@v2

- uses: taiki-e/install-action@v1
with:
tool: nextest

# Install the minimal versions this package says it supports
# https://users.rust-lang.org/t/psa-please-specify-precise-dependency-versions-in-cargo-toml/71277
# https://github.com/rust-lang/cargo/issues/5657
- name: "Install minimal package versions"
uses: actions-rs/cargo@v1
with:
command: update
toolchain: nightly
env:
RUSTFLAGS: -Zminimal-versions

- name: "Cargo ${{ matrix.cargo.name }}"
uses: actions-rs/cargo@v1
with:

0 comments on commit d3ad57a

Please sign in to comment.