Skip to content

Scala 3 migration

Scala 3 migration #47

Workflow file for this run

name: CI build
on:
push:
branches: [ master, scala-3-migration ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '17'
cache: sbt
- uses: sbt/setup-sbt@v1
- name: Start Docker images used in IT tests
run: make dev-bg
- name: Clean, check code formatting, compile, test
run: sbt clean scalafmtCheck fullTest
- name: Stop Docker images used in IT tests
if: always()
run: make dev-stop