Skip to content

CI: fix fullTest alias trailing space (sbt treated it as expecting an… #62

CI: fix fullTest alias trailing space (sbt treated it as expecting an…

CI: fix fullTest alias trailing space (sbt treated it as expecting an… #62

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@v5
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '17'
cache: sbt
- uses: sbt/setup-sbt@v1
- uses: extractions/setup-just@v4
- name: Start Docker images used in IT tests
run: just dev-bg
- name: Clean, check code formatting, compile, test
# sbt 2.x parses one command line: sequence multiple commands with ';' (space-separated no longer works)
run: sbt "clean; scalafmtCheckAll; fullTest"
- name: Stop Docker images used in IT tests
if: always()
run: just dev-stop