-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (39 loc) · 985 Bytes
/
scala.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Scala CI
on:
push:
branches-ignore:
- "update/**"
tags:
- "v*"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
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
- id: nodenv
uses: nodenv/actions/node-version@v2
- uses: actions/setup-node@v1
with:
node-version: "${{ steps.nodenv.outputs.node-version }}"
- name: Cache SBT
uses: actions/cache@v3
with:
path: |
~/.ivy2/local/
~/.ivy2/cache/
~/.sbt/
~/.coursier/
key: |
${{runner.os}}-${{hashFiles('**/build.sbt')}}
${{runner.os}}-
- name: Run tests
run: sbt test