mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-16 10:49:55 +00:00
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
|
run: cargo fmt --all -- --check
|
||||||
|
|
||||||
- name: Docs
|
- name: Docs
|
||||||
run: cargo doc --features docs,unstable
|
run: cargo doc --features docs
|
||||||
|
|
|
@ -50,7 +50,7 @@ matrix:
|
||||||
rust: nightly
|
rust: nightly
|
||||||
os: linux
|
os: linux
|
||||||
script:
|
script:
|
||||||
- cargo doc --features docs,unstable
|
- cargo doc --features docs
|
||||||
|
|
||||||
- name: book
|
- name: book
|
||||||
rust: nightly
|
rust: nightly
|
||||||
|
|
Loading…
Reference in a new issue