Skip to content

Fix incorrect behavior of CDM CSV parser #31

Fix incorrect behavior of CDM CSV parser

Fix incorrect behavior of CDM CSV parser #31

Workflow file for this run

name: Run tests with coverage (Scala code)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
validate_commit:
name: Validate commit
runs-on: ubuntu-latest
if: ${{ github.ref != 'refs/heads/main' }}
permissions:
id-token: write # required for dependabot PRs
pull-requests: write # required for dependabot PRs
contents: read # required for dependabot PRs
checks: write # required for cobertura-action
steps:
- uses: actions/checkout@v4
- name: Setup Scala
uses: japgolly/[email protected]
with:
java-version: temurin:1.23.0.1
- name: Build the Docker Compose stack
run: docker compose up -d
- name: Build and test
shell: bash
run: |
export $(cat unit-tests.env| xargs)
sbt clean coverage test coverageReport
- uses: 5monkeys/cobertura-action@v14
with:
path: ./target/scala-3.6.1/coverage-report/cobertura.xml
minimum_coverage: 40