Skip to content

Remove play module, use Scala 3 exclusively and rewrite core module with scala 3 syntax #248

Remove play module, use Scala 3 exclusively and rewrite core module with scala 3 syntax

Remove play module, use Scala 3 exclusively and rewrite core module with scala 3 syntax #248

Workflow file for this run

name: Compile
on:
pull_request:
branches: ['**']
push:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21
- run: sbt compile
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21
- run: sbt scalafmtCheckAll
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21
- run: sbt test