Skip to content

Commit

Permalink
Add minimal versions check for nightly CI job (#1197)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickelc authored Feb 23, 2021
1 parent 61a955c commit 6ac97dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,13 @@ jobs:
command: test
args: --features __internal_proxy_sys_no_cache -- --test-threads=1

- name: Check minimal versions
run: |
cargo clean
cargo update -Z minimal-versions
cargo check
cargo check --all-features
minversion:
name: Minimum version ${{ matrix.rust }}
needs: [style]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async-compression = { version = "0.3.7", default-features = false, features = ["
tokio-util = { version = "0.6.0", default-features = false, features = ["codec", "io"], optional = true }

## socks
tokio-socks = { version = "0.5", optional = true }
tokio-socks = { version = "0.5.1", optional = true }

## trust-dns
trust-dns-resolver = { version = "0.20", optional = true }
Expand Down

0 comments on commit 6ac97dc

Please sign in to comment.