Skip to content

Commit

Permalink
ci: add tests check to clippy (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid authored May 22, 2023
1 parent 02a94d9 commit f43140e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-targets #-- --deny=warnings
args: --workspace --all-targets --tests #-- --deny=warnings

- name: Build
run: ./ci/cargo-build-test.sh
2 changes: 1 addition & 1 deletion yellowstone-grpc-geyser/tests/test_filters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ mod tests {
let sig = sanitized_transaction.signature();
MessageTransaction {
transaction: MessageTransactionInfo {
signature: sig.clone(),
signature: *sig,
is_vote: true,
transaction: sanitized_transaction,
meta,
Expand Down
1 change: 0 additions & 1 deletion yellowstone-grpc-proto/proto/geyser.proto
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,3 @@ message GetSlotRequest {}
message GetSlotResponse {
uint64 slot = 1;
}

0 comments on commit f43140e

Please sign in to comment.