CI: fix fullTest alias trailing space (sbt treated it as expecting an… #62
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |