Pin Scala version to LTS #486
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: CI | |
on: | |
pull_request: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v13 | |
with: | |
java-version: "[email protected]" | |
- name: Run tests | |
run: sbt test | |
- name: Run all examples | |
run: sbt runAll | |
- name: Check formatting | |
run: sbt 'scalafmtSbtCheck; scalafmtCheck' |