Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc1fcf9

Browse files
committedJun 28, 2024·
chore(ci): Add CI job for checking it builds with minimal versions
Catch if we have under-specified any semver dependency
1 parent b3427ce commit cc1fcf9

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed
 

‎.github/workflows/ci.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
permissions:
2424
contents: none
2525
name: CI
26-
needs: [test, msrv, lockfile, docs, rustfmt, clippy]
26+
needs: [test, msrv, lockfile, docs, rustfmt, clippy, minimal-versions]
2727
runs-on: ubuntu-latest
2828
if: "always()"
2929
steps:
@@ -72,6 +72,27 @@ jobs:
7272
run: cargo hack check --all-features --locked --rust-version --ignore-private --workspace --all-targets
7373
- name: No-default features
7474
run: cargo hack check --no-default-features --locked --rust-version --ignore-private --workspace --all-targets
75+
# Make sure the library builds with all dependencies downgraded to their
76+
# oldest versions allowed by the semver spec. This ensures we have not
77+
# under-specified any dependency
78+
minimal-versions:
79+
name: Minimal versions
80+
runs-on: ubuntu-latest
81+
steps:
82+
- name: Checkout repository
83+
uses: actions/checkout@v4
84+
- name: Install stable Rust
85+
uses: dtolnay/rust-toolchain@stable
86+
with:
87+
toolchain: stable
88+
- name: Install nightly Rust
89+
uses: dtolnay/rust-toolchain@stable
90+
with:
91+
toolchain: stable
92+
- name: Downgrade dependencies to minimal versions
93+
run: cargo +nightly update -Z minimal-versions
94+
- name: Compile with minimal versions
95+
run: cargo +stable check --workspace --all-features --all-targets --locked
7596
lockfile:
7697
runs-on: ubuntu-latest
7798
steps:

0 commit comments

Comments
 (0)
Please sign in to comment.