From 6af1e0afdad4126a3f3babb5aa67b15587dd322e Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 30 Dec 2023 19:12:16 -0800 Subject: [PATCH] Tests --- .github/actions/test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 89c06b0f4..7a7fa724e 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -27,5 +27,5 @@ runs: shell: bash run: | for i in _tests/${{ inputs.pattern }}; do - dotnet test $i --no-build -c Release --filter ${{ inputs.filter }} + dotnet test $i --filter "${{ inputs.filter }}" done