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 label #67

Merged
merged 1 commit into from
Jan 15, 2024
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@main
with:
coverage-command: go test ./... -coverprofile=coverage.out -covermode count
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
![Kanto logo](https://github.com/eclipse-kanto/kanto/raw/main/logo/kanto.svg)
[![Kanto logo](https://github.com/eclipse-kanto/kanto/raw/main/logo/kanto.svg)](https://eclipse.dev/kanto/)

# Eclipse Kanto - Software Update

[![Coverage](https://github.com/eclipse-kanto/software-update/wiki/coverage.svg)](#)

Software update on a device via script enables updates of any kind of software, predefined in your script. You can monitor the install and download process and resume it on start up.

This functionality is provided by the Eclipse Kanto as a software-update native application. It allows you to install on a device any kind of software you define in your software updatable module.
Expand Down
Loading