We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afd7515 commit c0d2387Copy full SHA for c0d2387
.github/workflows/coverage.yml renamed to .github/workflows/testing.yml
@@ -1,4 +1,4 @@
1
-name: "Go Coverage"
+name: "Go Testing"
2
3
on:
4
workflow_dispatch:
@@ -8,15 +8,13 @@ on:
8
pull_request:
9
10
jobs:
11
- coverage:
+ testing:
12
# Ignore drafts
13
if: github.event.pull_request.draft == false
14
- name: Go test with coverage
+ name: Go testing
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v4
18
- with:
19
- fetch-depth: 10
20
21
- name: Set up Golang
22
uses: actions/setup-go@v5
@@ -26,10 +24,5 @@ jobs:
26
24
- name: Install dependencies
27
25
run: go mod tidy
28
29
- - uses: gwatts/go-coverage-action@v2
30
- id: coverage
31
32
- coverage-threshold: 60
33
- cover-pkg: ./...
34
- ignore-pattern: |
35
- /examples/
+ - name: Testing
+ run: go test -v ./pkg/...
0 commit comments