Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add coverage report workflow and append badge in README.md #8

Merged
merged 14 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/generate-coverage-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Create Coverage

on:
push:
branches:
- main

jobs:
generate-coverage-report:
uses: eclipse-kanto/kanto/.github/workflows/coverage-template.yaml
with:
coverage-command: go test ./... -coverprofile=coverage.out
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
![Kanto logo](https://github.com/eclipse-kanto/kanto/raw/main/logo/kanto.svg)


# Eclipse Kanto - AWS Connector

![Go Coverage](https://github.com/bosch-io/aws-connector/wiki/coverage.svg)

The **AWS Connector** is the main coordination center which forwards the local
and remote messages. Messages processed by the **AWS Connector** will
typically be related to telemetry data from the devices or command &
Expand Down
Loading