improve package gdb

This commit is contained in:
John Guo
2022-05-10 16:31:56 +08:00
parent a400d8b2f3
commit 6cf6414da2
13 changed files with 84 additions and 220 deletions

View File

@ -119,7 +119,6 @@ jobs:
cd cmd/gf
go mod tidy
go build ./...
go test ./...
GOARCH=386 go test ./... || exit 1
GOARCH=amd64 go test ./... -race -coverprofile=coverage.txt -covermode=atomic || exit 1
@ -148,12 +147,10 @@ jobs:
cd -
done
- name: Run i386 Arch Test
run: |
GOARCH=386 go test -v ./... || exit 1
- name: Run amd64 Arch Test
- name: Main Build & Test
run: |
go build ./...
GOARCH=386 go test -v ./... || exit 1
GOARCH=amd64 go test -v ./... -race -coverprofile=coverage.txt -covermode=atomic || exit 1
- name: Report Coverage