Skip to content
Open
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9fab87b
Updated workflow to show error on failing test
HarK-github Oct 17, 2025
19be303
Merge branch 'development' into development
Umang01-hash Oct 23, 2025
b881dc1
Merge branch 'gofr-dev:development' into development
HarK-github Oct 26, 2025
f9667c3
reworked failing tests
HarK-github Oct 27, 2025
7487123
Merge branch 'development' of https://github.com/HarK-github/gofr int…
HarK-github Oct 27, 2025
69a9fc2
Added retries
HarK-github Oct 27, 2025
8a2f6ba
Changes
HarK-github Oct 27, 2025
5f564cf
Added wait for services
HarK-github Oct 27, 2025
2db1241
Added ignore password error
HarK-github Oct 27, 2025
f0c5e5e
Added alternative to get services reade
HarK-github Oct 27, 2025
f66be96
Merge branch 'development' into development
Umang01-hash Oct 28, 2025
b268754
Merge branch 'development' into development
Umang01-hash Oct 28, 2025
a0136f8
Merge branch 'development' into development
HarK-github Oct 28, 2025
b52759d
Resolved issues
HarK-github Oct 29, 2025
b49c060
Reverted whitespaces and added healthchecks
HarK-github Oct 29, 2025
b9b7c10
Resolved remaining whitespace issues
HarK-github Oct 29, 2025
0772f3b
Pruning whitespaces
HarK-github Oct 29, 2025
8c4bb12
Resolved health checkup
HarK-github Oct 29, 2025
cf691bf
Changed to ping
HarK-github Oct 29, 2025
b5b886a
Added kafka checks
HarK-github Oct 29, 2025
b77170e
Changes
HarK-github Oct 29, 2025
043b7c8
Removed health check for kafka
HarK-github Oct 29, 2025
6199300
Changed continue on error
HarK-github Oct 29, 2025
85b50f6
repair
HarK-github Oct 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,17 +97,16 @@ jobs:
id: test
uses: nick-fields/retry@v3
with:
timeout_minutes: 5 # Maximum time for the tests to run
max_attempts: 2 # Retry up to 2 times if tests fail
timeout_minutes: 5
max_attempts: 2
retry_on: error
shell: bash
command: |
set -e
export APP_ENV=test
# Run tests for the examples directory with coverage
go test ./examples/... -v -short -covermode=atomic -coverprofile packageWithpbgo.cov -coverpkg=./examples/...
# Filter out auto-generated files by protobuf and gofr framework from coverage report
grep -vE '(/client/|grpc-.+-client/main\.go|_client\.go|_gofr\.go|_grpc\.pb\.go|\.pb\.go|\.proto|health_.*\.go)' packageWithpbgo.cov > profile.cov
# Display coverage statistics
go tool cover -func profile.cov

# Upload coverage report for the 1.24 Go version only
- name: Upload Test Coverage
if: ${{ matrix.go-version == '1.24'}}
Expand Down
Loading