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.
This commit is contained in:
Rene Nochebuena 2025-04-25 18:22:45 -06:00
parent 7c354b46e0
commit 3bbd0e5a3c
Signed by: Rene Nochebuena
GPG Key ID: A9FD83117EA538D8

View File

@ -49,8 +49,8 @@ runs:
- name: Run tests - name: Run tests
shell: bash shell: bash
run: | run: |
go test -json > test-report.out go test -json > test-report.out ./...
go test -coverprofile=coverage.out go test -coverprofile=coverage.out ./...
- name: Build library - name: Build library
if: inputs.build-type == 'library' if: inputs.build-type == 'library'