Compare commits

...

1 Commits
v1.1.0 ... main

Author SHA1 Message Date
6defc83568
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.
2025-04-25 18:22:45 -06:00

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'