From 3f375a13f8d23f3031bd1ab034cce4d525550a13 Mon Sep 17 00:00:00 2001 From: steamroller-airmash <38710707+steamroller-airmash@users.noreply.github.com> Date: Sat, 26 Feb 2022 11:31:15 -0500 Subject: [PATCH] Actually pass cargo flags instead of literal $CARGO_FLAGS (#143) As it turns out, this actually gets interpreted as a test filter and so CI doesn't end up running any tests. --- .github/workflows/build-project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index 63676ff8..c617ab35 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -25,7 +25,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: --color always $CARGO_FLAGS + args: --color always ${{ env.CARGO_FLAGS }} format: name: check-fmt