Skip to content

Update sbt to 1.9.6 #350

Update sbt to 1.9.6

Update sbt to 1.9.6 #350

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Mount caches
uses: actions/cache@v2
with:
path: |
~/.sbt
~/.ivy2/cache
~/.cache/coursier
key: ${{ runner.os }}-sbt-${{matrix.scala}}-${{ hashFiles('**/*.sbt') }}
- name: Formatting
run: |
sbt scalafmtCheck test:scalafmtCheck scalafmtSbtCheck
- name: Compile and test
run: |
sbt +test
- name: Examples
run: |
cd example && sbt compile
# Single final job for mergify.
ci-passed:
runs-on: ubuntu-latest
needs: build
steps:
- run: ':'