Skip to content

Commit e94cce5

Browse files
committed
Improve the test workflow
Remove the go vet step. Because the go test command runs go vet, there's no need to run go vet separately. Remove the verbose flag from the go test step. The verbose output provides little value and gets in the way of seeing the actual problems.
1 parent 9b44fee commit e94cce5

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/test.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,9 @@ jobs:
5555
neovim: true
5656
version: ${{ matrix.neovim-version }}
5757

58-
- name: go vet
59-
run: |
60-
go vet ./...
61-
6258
- name: Test and take a coverage
6359
run: |
64-
go test -v -race -count=1 -covermode=atomic -coverpkg=./... -coverprofile=coverage.out ./...
60+
go test -race -count=1 -covermode=atomic -coverpkg=./... -coverprofile=coverage.out ./...
6561
6662
- uses: codecov/codecov-action@v3
6763
with:

0 commit comments

Comments
 (0)