Skip to content

Commit c0d2387

Browse files
committed
ci: replace coverage with testing
1 parent afd7515 commit c0d2387

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Go Coverage"
1+
name: "Go Testing"
22

33
on:
44
workflow_dispatch:
@@ -8,15 +8,13 @@ on:
88
pull_request:
99

1010
jobs:
11-
coverage:
11+
testing:
1212
# Ignore drafts
1313
if: github.event.pull_request.draft == false
14-
name: Go test with coverage
14+
name: Go testing
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
with:
19-
fetch-depth: 10
2018

2119
- name: Set up Golang
2220
uses: actions/setup-go@v5
@@ -26,10 +24,5 @@ jobs:
2624
- name: Install dependencies
2725
run: go mod tidy
2826

29-
- uses: gwatts/go-coverage-action@v2
30-
id: coverage
31-
with:
32-
coverage-threshold: 60
33-
cover-pkg: ./...
34-
ignore-pattern: |
35-
/examples/
27+
- name: Testing
28+
run: go test -v ./pkg/...

0 commit comments

Comments
 (0)