Merge pull request #11 from iht/renovate/solution-beamversion #47
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: Scala CI solution branch | |
on: | |
push: | |
branches: [ "solution" ] | |
pull_request: | |
branches: [ "solution" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: 'sbt' | |
- name: Setup SBT | |
uses: sbt/setup-sbt@v1 | |
with: | |
sbt-runner-version: 1.9.9 | |
- name: Run tests | |
run: sbt test package |