Skip to content
This repository was archived by the owner on Oct 23, 2022. It is now read-only.

Commit 6fb62f1

Browse files
committed
chore: remove the nightly feature and CI run
Signed-off-by: ljedrz <ljedrz@gmail.com>
1 parent c1fcc6b commit 6fb62f1

File tree

3 files changed

+0
-25
lines changed

3 files changed

+0
-25
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -192,26 +192,6 @@ jobs:
192192
- name: cargo clippy
193193
run: cargo clippy --all-targets --workspace -- -D warnings
194194

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-
215195
# adapted from https://github.com/taiki-e/pin-project/blob/5878410863f5f25e21f7cba97b035501749850f9/.github/workflows/ci.yml#L136-L167
216196
ci-success:
217197
# this is read by bors
@@ -220,7 +200,6 @@ jobs:
220200
needs:
221201
- ci-matrix
222202
- lint-rust
223-
- readme-doctest
224203
runs-on: ubuntu-latest
225204
steps:
226205
- name: Mark the job as a success
@@ -233,7 +212,6 @@ jobs:
233212
needs:
234213
- ci-matrix
235214
- lint-rust
236-
- readme-doctest
237215
runs-on: ubuntu-latest
238216
steps:
239217
- name: Mark the job as failure

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ version = "0.1.0"
77

88
[features]
99
default = []
10-
nightly = []
1110
test_go_interop = []
1211
test_js_interop = []
1312

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//! IPFS node implementation
22
//#![deny(missing_docs)]
3-
#![cfg_attr(feature = "nightly", feature(external_doc))]
4-
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
53

64
mod config;
75
pub mod dag;

0 commit comments

Comments
 (0)