Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ jobs:
env:
RUSTDOCFLAGS: --cfg docsrs

minimal-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-hack
- uses: extractions/setup-just@v3
- name: Check minimal versions
run: just minimal-versions

msrv:
# Run `cargo check` on our minimum supported Rust version
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ hack:
# Without any grouping this test takes an hour and has to test >11k combinations.
# Skipped oauth and oidc, as these compile fails without a tls stack.

minimal-versions:
cargo hack --remove-dev-deps --workspace
cargo +nightly update -Z minimal-versions
cargo check --workspace --all-features

readme:
rustdoc README.md --test --edition=2024

Expand Down
Loading