https://github.com/hiwayapp/actions-go-test-coverage-checker
GitHub Actions to check test coverage. Thresholds can be set to make actions an error. And you can notify results to Slack.
https://github.com/hiwayapp/actions-go-test-coverage-checker
coverage github-actions go golang test
Last synced: 5 months ago
JSON representation
GitHub Actions to check test coverage. Thresholds can be set to make actions an error. And you can notify results to Slack.
- Host: GitHub
- URL: https://github.com/hiwayapp/actions-go-test-coverage-checker
- Owner: hiwayapp
- Created: 2022-12-18T08:54:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-12T08:23:31.000Z (over 3 years ago)
- Last Synced: 2025-08-13T15:00:19.603Z (10 months ago)
- Topics: coverage, github-actions, go, golang, test
- Language: TypeScript
- Homepage:
- Size: 64.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go test coverage checker

## Example workflow
```yaml
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19'
- name: Go test and check coverage
uses: hiwayapp/actions-go-test-coverage-checker@v1.3
with:
threshold: 60
logLevel: "info"
slackWebhookUrl: "https://hooks.slack.com/services/hoge/fuga/abcd"
```