Skip to content

sbt 1.10.1

sbt 1.10.1 #123

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: '22'
cache: sbt
- name: Check linting and formatting
run: sbt 'scalafixAll --check' scalafmtSbtCheck scalafmtCheck
- name: Unit test
run: sbt +test