Skip to content

Commit

Permalink
chore: run clippy against all targets
Browse files Browse the repository at this point in the history
This would help us to check if there is any
clippy warning in the tests.
  • Loading branch information
Rustin170506 committed Apr 15, 2024
1 parent 74331e1 commit 81d99c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
push:
branches: ["main"]
branches: [ "main" ]
pull_request:

name: CI
Expand Down Expand Up @@ -48,8 +48,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable]
os: [ ubuntu-latest, macos-latest, windows-latest ]
rust: [ stable ]
include:
# Make 1.64 MSRV, as it's Tonic 0.10's MSRV.
- rust: 1.64.0
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
run: cargo fmt --all -- --check

- name: Run cargo clippy
run: cargo clippy -- -D warnings
run: cargo clippy --workspace --all-targets --no-deps -- -D warnings

grpc_web:
name: gRPC-web Example
Expand Down

0 comments on commit 81d99c6

Please sign in to comment.