Skip to content

Update things to latest. #1

Update things to latest.

Update things to latest. #1

Workflow file for this run

name: Test workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test scala
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '21'
- name: Run tests
run: sbt coverage test coverageReport
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}