Skip to content

Commit

Permalink
Coverage test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsloan committed Nov 16, 2023
1 parent 5b598c4 commit 74bf659
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
run: sbt "project ${{ matrix.module }}" test
run: sbt "project ${{ matrix.module }}" clean coverage test coverageReport
env:
JVM_OPTS: -Xmx3200m
- name: Publish test results
Expand All @@ -93,6 +93,11 @@ jobs:
files: "**/target/**/test-reports/*.xml"
check_name: ${{ matrix.module }}-test-results
comment_mode: off
- name: Publish coverage report
uses: 5monkeys/cobertura-action@master
with:
path: target/scala-2.13/scoverage-report/*.xml
minimum_coverage: 60

integration-test:
needs:
Expand Down

0 comments on commit 74bf659

Please sign in to comment.