Skip to content

Commit

Permalink
exclude wasm bindings from lint workflow (#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
insipx authored Oct 31, 2024
1 parent 21882ac commit 6aae90b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/lint-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main
pull_request:
paths:
- ".github/workflows/lint.yaml"
- ".github/workflows/lint-workspace.yaml"
- "mls_validation_service/**"
- "xmtp_api_grpc/**"
- "xmtp_api_http/**"
Expand Down Expand Up @@ -35,6 +35,7 @@ jobs:
workspaces: |
.
- name: Run clippy and fail on warnings
run: cargo clippy --all-features --all-targets --no-deps -- -Dwarnings
# Exclude bindings_wasm since it only compiles for wasm32
run: cargo clippy --workspace --all-features --all-targets --no-deps --exclude bindings_wasm -- -Dwarnings
- name: Run format check
run: cargo fmt --check

0 comments on commit 6aae90b

Please sign in to comment.