Update sbt to 1.10.2 #29
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: "Check and Build" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
# "synchronize" means new commits pushed to the HEAD of the pull request branch | |
- synchronize | |
permissions: read-all | |
jobs: | |
cancel-previous: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup-scala | |
uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: adopt@1.11 | |
- name: Compile, check formatting, lint, and run tests | |
run: sbt ci compile styleCheck test |