Skip to content

scalafix 0.12.1

scalafix 0.12.1 #139

Workflow file for this run

name: Continuous integration
on:
push:
branches: ['**']
jobs:
lint-and-test:
name: Unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '23'
cache: sbt
- name: Check linting and formatting
run: sbt 'scalafixAll --check' scalafmtSbtCheck scalafmtCheck
- name: Unit test
run: sbt +test