feat: Enable codecov reports

This commit is contained in:
Ilkka Seppälä
2026-06-07 12:35:18 +03:00
parent 177dc52704
commit c317ce012a
2 changed files with 12 additions and 2 deletions
+6 -1
View File
@@ -50,4 +50,9 @@ jobs:
env:
# These two env variables are needed for sonar analysis
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
+6 -1
View File
@@ -38,4 +38,9 @@ jobs:
run: sudo apt-get install -y xvfb
- name: Build with Maven
run: xvfb-run ./mvnw clean verify
run: xvfb-run ./mvnw clean verify
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}