Merge pull request #55 from andreas-roehler/master #128
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
jobs: | |
build: | |
name: Build | |
needs: | |
- checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v2" | |
with: | |
submodules: 'true' | |
- name: "~/.sbt\n\"~/.cache/coursier\"\n cache" | |
uses: "actions/cache@v3" | |
with: | |
key: "${{ runner.os }}-sbt-${{ hashFiles('build.sbt', 'project/plugins.sbt', 'project/build.properties') }}" | |
path: | | |
~/.sbt | |
"~/.cache/coursier" | |
restore-keys: | | |
${{ runner.os }}-sbt | |
- name: "java ${{ matrix.java}} setup" | |
uses: "actions/setup-java@v1.4.3" | |
with: | |
architecture: x64 | |
java-package: jdk | |
java-version: "${{ matrix.java}}" | |
- run: "bash run_sbt.sh -DJDK_VERSION=${{ matrix.java}} \"++${{ matrix.scala}} test\"" | |
strategy: | |
matrix: | |
java: | |
- '17.0.9' | |
scala: | |
- '2.13.11' | |
checks: | |
name: Check formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v2" | |
with: | |
submodules: 'true' | |
- name: "~/.sbt\n\"~/.cache/coursier\"\n cache" | |
uses: "actions/cache@v3" | |
with: | |
key: "${{ runner.os }}-sbt-${{ hashFiles('build.sbt', 'project/plugins.sbt', 'project/build.properties') }}" | |
path: | | |
~/.sbt | |
"~/.cache/coursier" | |
restore-keys: | | |
${{ runner.os }}-sbt | |
- name: java 17 setup | |
uses: "actions/setup-java@v1.4.3" | |
with: | |
architecture: x64 | |
java-package: jdk | |
java-version: '17' | |
- run: sbt scalafmtCheckAll scalafmtSbtCheck | |
name: build_and_test | |
on: | |
pull_request: {} | |
push: {} |