Update circe-core, circe-generic, ... to 0.14.9 #123
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 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/setup-everything-scala@v1.0 | |
- name: Check code format | |
run: sbt scalafmtCheckAll | |
- name: Compile | |
run: sbt compile | |
- name: Run tests | |
run: sbt test | |
- name : Package the app | |
run: sbt chromePackage |