-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (34 loc) · 940 Bytes
/
ci.yml
File metadata and controls
45 lines (34 loc) · 940 Bytes
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:
push:
branches: [ master ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
scala:
- 2.13.16
- 3.3.7
steps:
- uses: actions/checkout@v4
- uses: coursier/cache-action@v6
- name: setup Java 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
- name: setup SBT
uses: sbt/setup-sbt@v1
- name: check code ${{ matrix.scala }}
run: sbt ++${{ matrix.scala }} clean check
- name: build ${{ matrix.scala }}
run: sbt ++${{ matrix.scala }} clean coverage test
- name: test coverage
if: success()
run: sbt ++${{ matrix.scala }} coverageAggregate coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }}