Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Adding coveralls to CI and badges to README.md (#28)
Browse files Browse the repository at this point in the history
Closes: #28
Related-Issue: #28
Projected-Results-Impact: none
  • Loading branch information
holtgrewe committed Jun 28, 2022
1 parent d9118c4 commit a9506e9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: continuous integration
name: continuous-integration

on:
- push
Expand Down Expand Up @@ -56,3 +56,6 @@ jobs:
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots clean test

- name: Coveralls Coverage Report Submission
run: mvn coveralls:report --define repoToken=${{ secrets.COVERALLS_REPO_TOKEN }}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![Continuous Integration](https://github.com/bihealth/varfish-annotator/actions/workflows/ci.yml/badge.svg)](https://github.com/bihealth/varfish-annotator/actions?query=workflow%3Acontinuous-integration)
[![Coverage Status](https://coveralls.io/repos/github/bihealth/varfish-annotator/badge.svg)](https://coveralls.io/github/bihealth/varfish-annotator)

# VarFish Annotator

Annotation of VCF file for import into VarFish (through Web UI).
Expand Down
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,19 @@
</executions>
</plugin>

<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
</plugin>

<!-- Compilation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit a9506e9

Please sign in to comment.