An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Go test coverage checker

2023-02-12_17 20 41

## 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"
```