Skip to content

Update scala-library to 2.12.20 #927

Update scala-library to 2.12.20

Update scala-library to 2.12.20 #927

Workflow file for this run

name: build
on:
push:
paths-ignore:
- '**.md'
branches-ignore:
- "gh-pages"
pull_request:
paths-ignore:
- '**.md'
branches-ignore:
- "gh-pages"
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
java:
- [email protected]
- graalvm-ce-java11@21
- [email protected]
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: 300
- name: Fetch tags
run: git fetch --depth=300 origin +refs/tags/*:refs/tags/*
- uses: coursier/[email protected]
- uses: olafurpg/setup-scala@v13
with:
java-version: ${{matrix.java}}
- name: Compile, test and check binary compatibility
run: "sbt -batch clean +test +mimaReportBinaryIssues"
shell: bash