Skip to content

Commit ffd14b6

Browse files
committed
GH WF: Fix name & testing
1 parent b38a058 commit ffd14b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
jobs:
1818

1919
build:
20+
name: Build, Test, Coverage
2021
runs-on: ubuntu-latest
2122
steps:
2223
- uses: actions/checkout@v2
@@ -33,7 +34,7 @@ jobs:
3334
run: go build -v ./...
3435

3536
- name: Test & Coverage
36-
run: go test -v -coverprofile=coverage.out -covermode=atomic
37+
run: go test -v ./... -coverprofile=coverage.out -covermode=atomic
3738

3839
- name: Upload coverage to Codecov
3940
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)