Skip to content

Commit 7a6928a

Browse files
committed
split test group
Signed-off-by: lance6716 <[email protected]>
1 parent c955c98 commit 7a6928a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ jobs:
3737
- name: Checkout code
3838
uses: actions/checkout@v1
3939
- name: Run tests
40-
run: go test ./...
40+
run: |
41+
# separate test to avoid RESET MASTER conflict
42+
go test $(go list ./... | grep -v canal)
43+
go test $(go list ./... | grep canal)
4144
4245
golangci:
4346
name: golangci

0 commit comments

Comments
 (0)