chore(ci): Only verify MSRV for published packages

This commit is contained in:
Ed Page 2024-02-15 09:58:01 -06:00
parent 51a98a25b6
commit 4db293d99b

View file

@ -53,7 +53,7 @@ jobs:
- name: No-default features
run: cargo test --workspace --no-default-features
msrv:
name: "Check MSRV: 1.65.0"
name: "Check MSRV"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
@ -61,14 +61,15 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: "1.65.0" # MSRV
toolchain: stable
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-hack
- name: Default features
run: cargo check --workspace --all-targets
run: cargo hack check --rust-version --ignore-private --workspace --all-targets
- name: All features
run: cargo check --workspace --all-targets --all-features
run: cargo hack check --rust-version --ignore-private --workspace --all-targets --all-features
- name: No-default features
run: cargo check --workspace --all-targets --no-default-features
run: cargo hack check --rust-version --ignore-private --workspace --all-targets --no-default-features
lockfile:
runs-on: ubuntu-latest
steps: