This repository was archived by the owner on Oct 23, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +0
-25
lines changed Expand file tree Collapse file tree 3 files changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -192,26 +192,6 @@ jobs:
192
192
- name : cargo clippy
193
193
run : cargo clippy --all-targets --workspace -- -D warnings
194
194
195
- readme-doctest :
196
- runs-on : ubuntu-latest
197
- steps :
198
- - name : Checkout sources
199
- uses : actions/checkout@v2
200
-
201
- - name : Cache cargo folder
202
- uses : actions/cache@v2
203
- with :
204
- path : ~/.cargo
205
- key : readme-doctest-${{ hashFiles('Cargo.lock') }}
206
-
207
- - name : Install rust toolchain
208
- uses : hecrj/setup-rust-action@v1
209
- with :
210
- rust-version : nightly
211
-
212
- - name : cargo test --features nightly
213
- run : cargo test --features nightly
214
-
215
195
# adapted from https://github.com/taiki-e/pin-project/blob/5878410863f5f25e21f7cba97b035501749850f9/.github/workflows/ci.yml#L136-L167
216
196
ci-success :
217
197
# this is read by bors
@@ -220,7 +200,6 @@ jobs:
220
200
needs :
221
201
- ci-matrix
222
202
- lint-rust
223
- - readme-doctest
224
203
runs-on : ubuntu-latest
225
204
steps :
226
205
- name : Mark the job as a success
@@ -233,7 +212,6 @@ jobs:
233
212
needs :
234
213
- ci-matrix
235
214
- lint-rust
236
- - readme-doctest
237
215
runs-on : ubuntu-latest
238
216
steps :
239
217
- name : Mark the job as failure
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ version = "0.1.0"
7
7
8
8
[features ]
9
9
default = []
10
- nightly = []
11
10
test_go_interop = []
12
11
test_js_interop = []
13
12
Original file line number Diff line number Diff line change 1
1
//! IPFS node implementation
2
2
//#![deny(missing_docs)]
3
- #![ cfg_attr( feature = "nightly" , feature( external_doc) ) ]
4
- #![ cfg_attr( feature = "nightly" , doc( include = "../README.md" ) ) ]
5
3
6
4
mod config;
7
5
pub mod dag;
You can’t perform that action at this time.
0 commit comments