Skip to content
This repository has been archived by the owner on Dec 26, 2024. It is now read-only.

Commit

Permalink
feat(consensus): add sequencing crates to some CI flows
Browse files Browse the repository at this point in the history
  • Loading branch information
matan-starkware committed Jun 24, 2024
1 parent a552685 commit e2811f3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ jobs:

- run: echo "Skipping clippy for now"
- run: >
cargo clippy --all-targets --all-features -- -D warnings -D future-incompatible
-D nonstandard-style -D rust-2018-idioms -D unused -D clippy::unwrap_used
-A clippy::blocks_in_conditions # This is because of a bug in tracing: https://github.com/tokio-rs/tracing/issues/2876
cargo clippy --workspace --all-targets --all-features -- -D warnings
-D future-incompatible -D nonstandard-style -D rust-2018-idioms -D unused
-D clippy::unwrap_used -A clippy::blocks_in_conditions # This is because of a bug in tracing: https://github.com/tokio-rs/tracing/issues/2876
doc:
runs-on: ubuntu-latest
Expand All @@ -181,7 +181,7 @@ jobs:
with:
version: ${{env.PROTOC_VERSION}}

- run: cargo doc -r --document-private-items --no-deps
- run: cargo doc --workspace -r --document-private-items --no-deps

check:
runs-on: ubuntu-latest
Expand All @@ -195,7 +195,7 @@ jobs:
with:
version: ${{env.PROTOC_VERSION}}

- run: cargo check -r --all-features
- run: cargo check --workspace -r --all-features

codecov:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e2811f3

Please sign in to comment.