Update sbt-lucuma-app to 0.12.4 #3822
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Set up Scala | |
uses: olafurpg/setup-scala@v12 | |
with: | |
java-version: [email protected] | |
- name: Cache Coursier | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/coursier | |
key: sbt-coursier-cache | |
- name: Cache SBT | |
uses: actions/[email protected] | |
with: | |
path: ~/.sbt | |
key: sbt-${{ hashFiles('**/build.sbt') }} | |
- name: Check format | |
run: sbt headerCheck test:headerCheck scalafmtCheckAll | |
- name: Run tests | |
run: sbt +compile seqexec_modelJVM/test seqexec_modelJS/test seqexec_engine/test seqexec_server/test seqexec_web_server/test seqexec_web_client/test |