Skip to content

Tidy up

Tidy up #144

Workflow file for this run

name: Continuous integration
on: push
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: sbt
- name: scalafmt
run: sbt scalafmtAll
- name: scalafix
run: sbt scalafixAll
- name: unit tests
run: sbt tests/test