-
Notifications
You must be signed in to change notification settings - Fork 103
45 lines (45 loc) · 1.25 KB
/
ci.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
43
44
45
name: CI
on:
pull_request:
push:
schedule:
# 2am EST every Saturday
- cron: '0 7 * * 6'
jobs:
build:
strategy:
matrix:
include:
- java: 8
distribution: temurin
sbt: 1
- java: 8
distribution: temurin
sbt: 2
runs-on: ubuntu-latest
env:
# define Java options for both official sbt and sbt-extras
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Scala
uses: actions/setup-java@v4
with:
distribution: "${{ matrix.distribution }}"
java-version: "${{ matrix.java }}"
cache: sbt
- uses: sbt/setup-sbt@v1
- name: Build and test (sbt 1.x)
if: ${{ matrix.sbt == 1 }}
shell: bash
run: |
gpg --import test-key.gpg
sbt -v ++2.12.x clean scalafmtSbtCheck scalafmtCheckAll test scripted
- name: Build and test (sbt 2.x)
if: ${{ matrix.sbt == 2 }}
shell: bash
run: |
gpg --import test-key.gpg
sbt -v ++3.x clean scalafmtCheckAll test scripted