Skip to content

scala 2.12.20

scala 2.12.20 #134

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