Skip to content

Update scala-library to 2.13.14 #242

Update scala-library to 2.13.14

Update scala-library to 2.13.14 #242

Workflow file for this run

name: Build Pull Requests
on:
push:
branches: [ main, 0.1.x ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
steps:
- uses: actions/checkout@v2
- name: Cache Coursier
uses: actions/cache@v1
with:
path: ~/.cache/coursier
key: ${{ runner.os }}-sbt-cache-${{ hashFiles('**/build.sbt') }}
- name: Cache Sbt
uses: actions/cache@v1
with:
path: ~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 15
- name: "2.13 Test"
if: ${{ github.base_ref == 'main' }}
run: sbt "++ 2.13.6 test"
- name: "2.12 Test"
if: ${{ github.base_ref == 'main' }}
run: sbt "++ 2.12.14 test"
- name: "2.11 Test"
if: ${{ github.base_ref == '0.1.x' }}
run: sbt "++ 2.11.12 test"