How to set up a single CI telemetry for both `cargo fmt` and `cargo t`?

CI file

name: CI

on: push

jobs
  unit-tests:
    name: cargo t
    runs-on: ubuntu-latest
    steps:
      - name: Collect Workflow Telemetry
        uses: catchpoint/workflow-telemetry-action@v2

      - uses: actions/checkout@v4

      - uses: actions-rust-lang/setup-rust-toolchain@v1
        
      - name: unit tests
        run: |
          cargo t

  formatting:
    name: cargo fmt
    runs-on: ubuntu-latest
    steps:
      - name: Collect Workflow Telemetry
        uses: catchpoint/workflow-telemetry-action@v2

      - uses: actions/checkout@v4

      - uses: actions-rust-lang/setup-rust-toolchain@v1
        with:
          components: rustfmt

      - name: Rustfmt Check
        uses: actions-rust-lang/rustfmt@v1

When I run this CI, I get one telemetry for cargo fmt and another telemetry for cargo t:

How can I set up the telemetry so that both of these Rust workflows are combined under a single telemetry, without serializing the workflows?