This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Update scalamock to 6.2.0 #243
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: Coverage | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/setup-action@v1 | |
- name: branch-names | |
id: branch-name | |
uses: tj-actions/branch-names@v7 | |
- run: sbt coverage +test coverageReport | |
- run: sbt coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CI_BRANCH: ${{ steps.branch-name.outputs.current_branch }} |