File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 53
53
with :
54
54
path : ~/go/pkg/mod
55
55
key : ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
56
- - name : Run tests
56
+ - name : Run unit tests
57
57
run : go test -race -coverprofile=coverage.out -covermode=atomic ./...
58
+ - name : Run e2e tests
59
+ run : go test -race --coverprofile=coverage.out -covermode=atomic ./e2e/...
58
60
- name : Upload coverage to Codecov
59
61
60
62
with :
Original file line number Diff line number Diff line change 5
5
test :
6
6
go test --short -cover ./...
7
7
e2e-test :
8
- go test -race -cover ./e2e/...
8
+ git submodule update --init --recursive && go test -race -cover ./e2e/...
9
9
lint :
10
10
go install -v github.com/golangci/golangci-lint/cmd/
[email protected]
11
11
${GOPATH} /bin/golangci-lint run --deadline=3m --timeout=3m ./... # Run linters
You can’t perform that action at this time.
0 commit comments