Skip to content

Commit e5a949f

Browse files
committed
chore: Update Go test command with timeout option
This commit updates the Go test command in the `.github/workflows/ci.yml` file to include the `--timeout 30s` option. This ensures that the tests have a maximum execution time of 30 seconds.
1 parent 0e4a283 commit e5a949f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313

1414
- name: Test Go code and generate coverage report
1515
run: |
16-
go test ./... --coverprofile=coverage.out
16+
go test ./... --timeout 30s --coverprofile=coverage.out

0 commit comments

Comments
 (0)