Skip to content

Merge pull request #108 from ThoughtWorksInc/update/master/sbt-1.10.11 #124

Merge pull request #108 from ThoughtWorksInc/update/master/sbt-1.10.11

Merge pull request #108 from ThoughtWorksInc/update/master/sbt-1.10.11 #124

Workflow file for this run

name: Scala CI
on:
push:
branches-ignore:
- "update/**"
tags:
- "v*"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scala:
- 3.2.2
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Need the git history for sbt-dynver to determine the version
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: temurin
- uses: sbt/setup-sbt@v1
- name: Cache SBT
uses: actions/cache@v3
with:
path: |
~/.ivy2/local/
~/.ivy2/cache/
~/.sbt/
~/.coursier/
key: |
${{runner.os}}-${{matrix.scala}}-${{hashFiles('**/*.sbt')}}-${{matrix.sbt-args}}
${{runner.os}}-${{matrix.scala}}-${{hashFiles('**/*.sbt')}}-
${{runner.os}}-${{matrix.scala}}-
- name: Run tests
run: sbt ${{matrix.sbt-args}} ++${{ matrix.scala }} test