forked from mirror/async-std
Removes unstable feature flag from CI doc commands
Per Stjepan Glavina, this flag is superfluous because #[cfg(any(feature = "unstable", feature = "docs"))] is used everywhere in the codebase. Discussion: https://github.com/async-rs/async-std/pull/278#issuecomment-538744737
This commit is contained in:
parent
cf6277bcdc
commit
0d521cb77c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -54,4 +54,4 @@ jobs:
|
|||
run: cargo fmt --all -- --check
|
||||
|
||||
- name: Docs
|
||||
run: cargo doc --features docs,unstable
|
||||
run: cargo doc --features docs
|
||||
|
|
|
@ -50,7 +50,7 @@ matrix:
|
|||
rust: nightly
|
||||
os: linux
|
||||
script:
|
||||
- cargo doc --features docs,unstable
|
||||
- cargo doc --features docs
|
||||
|
||||
- name: book
|
||||
rust: nightly
|
||||
|
|
Loading…
Reference in a new issue