Update sbt-scoverage to 2.4.3 #139
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| scala: | |
| - 2.13.16 | |
| - 3.3.7 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: coursier/cache-action@v6 | |
| - name: setup Java 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'oracle' | |
| cache: 'sbt' | |
| - name: setup SBT | |
| uses: sbt/setup-sbt@v1 | |
| - name: check code ${{ matrix.scala }} | |
| run: sbt ++${{ matrix.scala }} clean check | |
| - name: build ${{ matrix.scala }} | |
| run: sbt ++${{ matrix.scala }} clean coverage test | |
| - name: test coverage | |
| if: success() | |
| run: sbt ++${{ matrix.scala }} coverageAggregate coveralls | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }} |