From 6defc835686936202a88f0e46101ece0e3f973c6 Mon Sep 17 00:00:00 2001 From: Rene Nochebuena Date: Fri, 25 Apr 2025 18:22:45 -0600 Subject: [PATCH] Update test commands to include all packages recursively Modified the test commands in the workflow to ensure all packages and subpackages are included during testing. This ensures comprehensive test coverage and generates accurate reports. --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 2b6fea9..c1c98b7 100644 --- a/action.yml +++ b/action.yml @@ -49,8 +49,8 @@ runs: - name: Run tests shell: bash run: | - go test -json > test-report.out - go test -coverprofile=coverage.out + go test -json > test-report.out ./... + go test -coverprofile=coverage.out ./... - name: Build library if: inputs.build-type == 'library'