From 21fe51ca248923e017057f144b321feeba525f9c Mon Sep 17 00:00:00 2001 From: Scott Phillips Date: Thu, 18 Aug 2022 10:07:20 -0400 Subject: [PATCH] workaround from here: https://github.com/actions-rs/cargo/issues/86 --- .github/workflows/build-rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-rust.yml b/.github/workflows/build-rust.yml index ca3920f6d..a81efdb8a 100644 --- a/.github/workflows/build-rust.yml +++ b/.github/workflows/build-rust.yml @@ -45,10 +45,12 @@ jobs: uses: actions-rs/cargo@v1 with: command: build + args: --manifest-path cli/Cargo.toml - name: cargo test uses: actions-rs/cargo@v1 with: command: test + args: --manifest-path cli/Cargo.toml - name: Test CLI directly run: | ./test/Run-Demo.ps1 -Environment Staging -CommandPath ./target/debug/trinsic