Skip to content

Adopt tests a bit

Adopt tests a bit #17

Workflow file for this run

name: Scala CI with SBT
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: 'sbt'
- name: Check formatting
run: sbt scalafmtCheckAll
- name: Build with sbt
run: sbt test
- name: Publish Unit Test Results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: 'target/test-reports/*.xml'