-
Notifications
You must be signed in to change notification settings - Fork 18
43 lines (38 loc) · 1.13 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
name: CI
on: ["push", "pull_request"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
jdk: [17]
scala: ['2.13', '3.2']
include:
- scala: '2.13'
scala-version: 2.13.9
- scala: '3.2'
scala-version: 3.2.2
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: ${{ matrix.jdk }}
- name: Check and compile
run: sbt ++${{ matrix.scala-version }} scalafmtCheckAll compile
- name: Test
run: >
if [[ "${{ matrix.scala }}" =~ ^2\..* ]]; then
sbt ++${{ matrix.scala-version }} coverage genCode test;
else
sbt ++${{ matrix.scala-version }} genCode test;
fi
- name: Coveralls
if: startsWith(matrix.scala, '2')
run: sbt ++${{ matrix.scala-version }} coverageAggregate coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }}