We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3ec0f4 commit dc7ca82Copy full SHA for dc7ca82
.github/workflows/test.yaml
@@ -18,9 +18,21 @@ jobs:
18
key: go-${{ hashFiles('**/go.sum') }}
19
- name: Checkout Code
20
uses: actions/checkout@v2
21
+
22
- name: Test Plank
- run: go test -v -race -covermode atomic -coverprofile=profile.cov ./...
23
+ run: go test -v -race -covermode atomic -coverprofile=profile.cov ./...
24
25
- name: Send Coverage
26
uses: shogo82148/actions-goveralls@v1
27
with:
28
+ parallel: true
29
+ flag-name: Go-${{ matrix.go-version }}
30
path-to-profile: profile.cov
31
32
+ finish:
33
+ needs: test
34
+ runs-on: ubuntu-latest
35
+ steps:
36
+ - uses: shogo82148/actions-goveralls@v1
37
+ with:
38
+ parallel-finished: true
0 commit comments