-
Notifications
You must be signed in to change notification settings - Fork 38
60 lines (52 loc) · 1.35 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
name: CI
concurrency:
group: ci-${{ github.head_ref }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
env:
JAVA_OPTS: >-
-Xms4096M -Xmx4096M -Xss6M
-Dfile.encoding=UTF-8
--add-opens java.base/java.lang=ALL-UNNAMED
jobs:
test_scala:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v3
name: Cache Embedded Cassandra
with:
path: |
~/.embedded-cassandra
key: cassandra-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/**') }}
- uses: coursier/cache-action@v6
with:
extraKey: '2.13'
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Set up scala
uses: sbt/setup-sbt@159bc2bcdce6cc8f23f9faa80a0efc07632b17b9
- run: sbt -v test quine/assembly quine-docs/generateDocs 'scalafixAll --check'
scalafmt:
name: Scalafmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: coursier/cache-action@v6
with:
extraKey: 'fmt'
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Set up scala
uses: sbt/setup-sbt@159bc2bcdce6cc8f23f9faa80a0efc07632b17b9
- run: sbt -v scalafmtCheckAll scalafmtSbtCheck