mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
ci: minimal version check (#3131)
This commit is contained in:
parent
9d0c0dd22c
commit
6a0e23c654
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
@ -181,6 +181,26 @@ jobs:
|
|||||||
- name: "test --workspace --all-features"
|
- name: "test --workspace --all-features"
|
||||||
run: cargo check --workspace --all-features
|
run: cargo check --workspace --all-features
|
||||||
|
|
||||||
|
minimal-versions:
|
||||||
|
name: minimal-versions
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: ${{ env.nightly }}
|
||||||
|
override: true
|
||||||
|
- name: Install cargo-hack
|
||||||
|
run: cargo install cargo-hack
|
||||||
|
- name: "check --all-features -Z minimal-versions"
|
||||||
|
run: |
|
||||||
|
# Remove dev-dependencies from Cargo.toml to prevent the next `cargo update`
|
||||||
|
# from determining minimal versions based on dev-dependencies.
|
||||||
|
cargo hack --remove-dev-deps --workspace
|
||||||
|
# Update Cargo.lock to minimal version dependencies.
|
||||||
|
cargo update -Z minimal-versions
|
||||||
|
cargo check --all-features
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
name: fmt
|
name: fmt
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -96,7 +96,7 @@ pin-project-lite = "0.1.1"
|
|||||||
# Everything else is optional...
|
# Everything else is optional...
|
||||||
bytes = { version = "0.6.0", optional = true }
|
bytes = { version = "0.6.0", optional = true }
|
||||||
futures-core = { version = "0.3.0", optional = true }
|
futures-core = { version = "0.3.0", optional = true }
|
||||||
lazy_static = { version = "1.0.2", optional = true }
|
lazy_static = { version = "1.4.0", optional = true }
|
||||||
memchr = { version = "2.2", optional = true }
|
memchr = { version = "2.2", optional = true }
|
||||||
mio = { version = "0.7.5", optional = true }
|
mio = { version = "0.7.5", optional = true }
|
||||||
num_cpus = { version = "1.8.0", optional = true }
|
num_cpus = { version = "1.8.0", optional = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user