Skip to content

Commit 1446d4c

Browse files
committed
Set parallelism to 1 for Go tests in CI workflow.
This change modifies the test command in the CI pipeline to run with `-p 1`, ensuring tests are executed serially. This adjustment prevents potential issues caused by parallel test execution in certain cases.
1 parent ba31824 commit 1446d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
5252
go mod download
5353
5454
- name: Run tests
55-
run: go test ./...
55+
run: go test -p 1 ./...

0 commit comments

Comments
 (0)