Skip to content

Commit

Permalink
ci: fix issue with CI lint steps
Browse files Browse the repository at this point in the history
  • Loading branch information
sdd committed Feb 15, 2024
1 parent 8aa4fae commit 202ab9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
options: --features=serialize,serialize_rkyv --no-deps
name: Clippy (stable)

- name: Check Rustdoc Links
run: RUSTDOCFLAGS="--deny broken_intra_doc_links" cargo doc --verbose --workspace --no-deps --document-private-items
Expand Down Expand Up @@ -105,6 +106,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
options: --all-features --no-deps
name: Clippy (nightly)

- name: Check Rustdoc Links
run: RUSTDOCFLAGS="--deny broken_intra_doc_links" cargo doc --verbose --workspace --no-deps --document-private-items
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ features = ["alloc", "copy_unsafe", "size_64"]
[features]
global_allocate = []
immutable = []
serialize = ["serde", "serde_derive", "serde_with", "fixed/serde"]
serialize = ["serde", "serde/derive", "serde_derive", "serde_with", "fixed/serde"]
serialize_rkyv = ["rkyv"]
simd = []
tracing = ["dep:tracing", "tracing-subscriber"]
Expand Down

0 comments on commit 202ab9f

Please sign in to comment.