Skip to content

Commit

Permalink
chore: Update Go test command with timeout option
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ssulei7 committed Oct 4, 2024
1 parent 0e4a283 commit e5a949f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:

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

0 comments on commit e5a949f

Please sign in to comment.