Skip to content
This repository was archived by the owner on Jun 25, 2022. It is now read-only.

Commit 3aab0cf

Browse files
committed
fixed github action test
1 parent bf8c88d commit 3aab0cf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
uses: actions/checkout@v2
1414
with:
1515
fetch-depth: 1
16+
- name: Setup Go ${{ matrix.go-version }}
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: ${{ matrix.go-version }}
1620
- name: Test
1721
run: |
18-
go test -race ./...
22+
go test -race -cover -v ./...
1923
go install -v ./packr2

0 commit comments

Comments
 (0)