From 1efd96206421bfa55c7ebf15337ebbd045d5bf92 Mon Sep 17 00:00:00 2001 From: Andrew Plaza Date: Mon, 12 Aug 2024 10:59:23 -0400 Subject: [PATCH] add xmtp_api_http to changed path in lint workflow --- .github/workflows/lint-workspace.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/lint-workspace.yaml b/.github/workflows/lint-workspace.yaml index a92a1079b..de69824e8 100644 --- a/.github/workflows/lint-workspace.yaml +++ b/.github/workflows/lint-workspace.yaml @@ -1,15 +1,14 @@ name: Lint Workspace - on: push: branches: - main - pull_request: paths: - ".github/workflows/lint.yaml" - "mls_validation_service/**" - "xmtp_api_grpc/**" + - "xmtp_api_http/**" - "xmtp_cryptography/**" - "xmtp_id/**" - "xmtp_mls/**" @@ -19,7 +18,6 @@ on: - "Cargo.lock" - "rust-toolchain" - "rustfmt.toml" - jobs: lint: name: Lint @@ -27,18 +25,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Update rust toolchains run: rustup update - - name: Cache uses: Swatinem/rust-cache@v2 with: workspaces: | . - - name: Run clippy and fail on warnings run: cargo clippy --all-features --all-targets --no-deps -- -Dwarnings - - name: Run format check run: cargo fmt --check