diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 86bbf64..3cf3e05 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -53,6 +53,18 @@ jobs: command: clippy args: -- -D warnings + - name: Install cargo-bloat + uses: actions-rs/cargo@v1 + with: + command: install + args: cargo-bloat + + - name: Run cargo-bloat + uses: actions-rs/cargo@v1 + with: + command: bloat + args: --locked --all --release --crates --time + integration: name: Integration runs-on: ubuntu-latest