-
Notifications
You must be signed in to change notification settings - Fork 56
60 lines (60 loc) · 1.65 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI
on:
pull_request:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 11
distribution: temurin
jobtype: 1
- os: ubuntu-latest
java: 11
distribution: temurin
jobtype: 2
- os: ubuntu-latest
java: 11
distribution: temurin
jobtype: 3
- os: ubuntu-latest
java: 8
distribution: temurin
jobtype: 1
- os: windows-latest
java: 11
distribution: temurin
jobtype: 1
runs-on: ${{ matrix.os }}
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 JDK
uses: actions/setup-java@v4
with:
distribution: "${{ matrix.distribution }}"
java-version: "${{ matrix.java }}"
cache: sbt
- uses: sbt/setup-sbt@v1
- name: Setup key
shell: bash
run: gpg --import test-key.gpg
- name: Build and test
if: ${{ matrix.jobtype == 1 }}
shell: bash
run: sbt -v clean test scripted
- name: Scalafmt
if: ${{ matrix.jobtype == 2 }}
shell: bash
run: sbt -v clean scalafmtSbtCheck +scalafmtCheckAll
- name: Scala 3
if: ${{ matrix.jobtype == 3 }}
shell: bash
run: sbt -v '++ 3.3.4!' library/test scripted