Skip to content

Update scala-library, scala-reflect to 2.13.13 #393

Update scala-library, scala-reflect to 2.13.13

Update scala-library, scala-reflect to 2.13.13 #393

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- name: Setup Scala
uses: olafurpg/setup-scala@v13
- name: Checking your code format
run: sbt +scalafmtCheck
- name: Cache dependencies
uses: actions/[email protected]
with:
path: ~/.cache/coursier/v1
key: ${{ runner.os }}-coursier-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}
restore-keys: ${{ runner.os }}-coursier-
- name: Cache .sbt
uses: actions/[email protected]
with:
path: ~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}
restore-keys: ${{ runner.os }}-sbt-
- name: Run tests
run: |
sbt +test