File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1313 with :
1414 go-version : ' 1.20'
1515 - uses : actions/checkout@v2
16- - name : git-access-hack
17- # it needs access to everything
18- run : git config --global url."https://${{ secrets.ORG_GITHUB_TOKEN }}:x-oauth-basic@github.com/gametimesf".insteadOf "https://github.com/gametimesf"
1916 - name : go-mod-download
2017 # force go to download the modules first, golangci-lint just does not do it correctly
2118 run : go mod download
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ before_install:
1818 - go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2
1919 - go install github.com/daixiang0/gci@v0.3.4
2020script :
21- - make test
21+ - make unit
Original file line number Diff line number Diff line change @@ -2,12 +2,14 @@ SHELL:=/bin/bash
22
33test :
44 go vet ./...
5- go test --race --cover -tags=' unit' ./...
5+ go test -parallel 15 -tags=' unit integration ' ./...
66
77unit :
8+ go vet ./...
89 go test --race --cover -tags=unit ./...
910
1011integration :
12+ go vet ./...
1113 go test -parallel 15 -tags=integration ./...
1214
1315analysis :
You can’t perform that action at this time.
0 commit comments