From 95f5658040ae8137681bbd4cab4f7344ae68264b Mon Sep 17 00:00:00 2001 From: Kayla Reopelle Date: Wed, 16 Oct 2024 09:47:12 -0700 Subject: [PATCH] test: Add tanna's magic to the test gem --- .github/actions/test_gem/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/test_gem/action.yml b/.github/actions/test_gem/action.yml index 009270fd8..b19dbd968 100644 --- a/.github/actions/test_gem/action.yml +++ b/.github/actions/test_gem/action.yml @@ -96,7 +96,12 @@ runs: echo "::endgroup::" done else - bundle exec rake test + i=0; while bundle exec rake test + do + echo i: $i + ((i=i+1)) + done + echo i: $i fi working-directory: "${{ steps.setup.outputs.gem_dir }}"