Skip to content

Update sbt to 1.10.2 #491

Update sbt to 1.10.2

Update sbt to 1.10.2 #491

Workflow file for this run

name: build
on:
push:
paths-ignore:
- 'docs/**'
- '**.md'
branches-ignore:
- "gh-pages"
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
branches-ignore:
- "gh-pages"
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
java:
- graalvm@
- zulu@1.8
- zulu@1.11
os:
- ubuntu-latest
- macOS-latest
- windows-latest
fail-fast: false
steps:
- name: Configure git
run: "git config --global core.autocrlf false"
shell: bash
- uses: actions/checkout@v2
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- uses: coursier/cache-action@v5
- uses: olafurpg/setup-scala@v12
with:
java-version: ${{matrix.java}}
- name: Compile, test and check binary compatibility
run: "sbt -batch clean +test +mimaReportBinaryIssues"
shell: bash