From 530872a4c5ab09f91eac752784790eb6276e3eb0 Mon Sep 17 00:00:00 2001 From: LukeMathWalker Date: Fri, 13 Aug 2021 11:08:03 +0100 Subject: [PATCH] Fix command invocations. --- .github/workflows/general.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index cd0cecd22..88400de1d 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -37,13 +37,16 @@ jobs: command: test - uses: actions-rs/cargo@v1 with: - command: test --features opentelemetry_0_13 + command: test + args: --features opentelemetry_0_13 - uses: actions-rs/cargo@v1 with: - command: test --features opentelemetry_0_14 + command: test + args: --features opentelemetry_0_14 - uses: actions-rs/cargo@v1 with: - command: test --features opentelemetry_0_15 + command: test + args: --features opentelemetry_0_15 fmt: name: Rustfmt