Skip to content

Commit

Permalink
supress clippy warnings as error, fix cargo deps sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
saeidakbari committed Apr 7, 2024
1 parent fa62c0a commit 5f0ec38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Check
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
run: cargo clippy --workspace --all-targets --all-features
- name: rustfmt
run: cargo fmt --all --check

test:
needs: check
needs: ["check", "dependencies-are-sorted"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ hotwatch = "0.5.0"
log = "0.4.20"
md5 = "0.7.0"
network-interface = "1.1.1"
opentelemetry = {version = "0.21.0", features = ["metrics"] }
opentelemetry = { version = "0.21.0", features = ["metrics"] }
opentelemetry-prometheus = "0.14.1"
opentelemetry_sdk = { version = "0.21.2", features = ["metrics"] }
pin-project = "1.1.4"
Expand Down

0 comments on commit 5f0ec38

Please sign in to comment.