Skip to content

Commit c317121

Browse files
ModProgdaxpedda
authored andcommitted
Fix ci
1 parent 4269f18 commit c317121

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/spellcheck.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
~/.cargo/.crates2.json
1818
~/.cargo/bin/cargo-spellcheck
1919
key: cargo-spellcheck
20+
- name: Install libclang-dev
21+
run: sudo apt-get install libclang-dev
2022
- name: Install cargo-spellcheck
2123
run: cargo install cargo-spellcheck --locked
2224
- name: Checkout

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![cfg_attr(feature = "nightly", feature(allow_internal_unstable))]
33
#![allow(clippy::tabs_in_doc_comments)]
44
#![warn(clippy::cargo, clippy::missing_docs_in_private_items)]
5-
#![cfg_attr(doc, warn(rustdoc::all), allow(rustdoc::missing_doc_code_examples))]
5+
#![cfg_attr(doc, allow(unknown_lints), warn(rustdoc::all))]
66

77
//! # Description
88
//!

0 commit comments

Comments
 (0)