-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (40 loc) · 1.13 KB
/
ci.yml
File metadata and controls
51 lines (40 loc) · 1.13 KB
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
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scala:
- 3.3.0
- 2.13.11
- 2.12.18
steps:
- uses: actions/checkout@v4
- uses: coursier/cache-action@v6
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "oracle"
cache: "sbt"
- name: setup SBT
uses: sbt/setup-sbt@v1
- name: Check code formatting
run: sbt 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 }}
- name: slack
uses: homoluctus/slatify@master
if: failure() && github.ref == 'refs/heads/master'
with:
type: ${{ job.status }}
job_name: Build
url: ${{ secrets.SLACK_WEBHOOK }}