Update sbt to 1.10.7 #448
Workflow file for this run
This file contains 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: Build the server app | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Setup Scala | |
uses: japgolly/[email protected] | |
- name: Check code format | |
run: sbt scalafmtCheckAll | |
- name: Compile | |
run: sbt +compile | |
- name: Run tests | |
run: sbt +test | |