Skip to content

set up codacy coverage #642

set up codacy coverage

set up codacy coverage #642

Workflow file for this run

name: Scala CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-22.04 #temporary not latest because 24 is broken
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
cache: sbt
- name: Run tests
run: sbt clean coverage test coverageReport
- name: Codacy Coverage Reporter
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}