This repository was archived by the owner on Mar 2, 2022. It is now read-only.
File tree 5 files changed +30
-90
lines changed
5 files changed +30
-90
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Check Codecov
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : Set up JDK 11
13
+ uses : actions/setup-java@v1
14
+ with :
15
+ java-version : 11
16
+ - name : Build with sbt
17
+ run : sbt ++2.12.12 clean coverage test coverageReport
18
+ - name : Codecov
19
+ if : success()
20
+ run : bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 21
21
java-version : ${{ matrix.java }}
22
22
- name : Run tests
23
23
run : sbt +test
24
+ - name : Notify via telegram
25
+ if : cancelled() == false
26
+
27
+ with :
28
+ botToken : ${{ secrets.TELEGRAMBOTTOKEN }}
29
+ chatId : ${{ secrets.TELEGRAMCHATID }}
30
+ jobStatus : ${{ job.status }}
31
+ skipSuccess : ' false'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ val scalaTest = "org.scalatest" %% "scalatest" % "3.2.1" % "test"
10
10
val reactorTest = " io.projectreactor" % " reactor-test" % reactorVersion % " test"
11
11
12
12
// Scala versions for cross compiling
13
- lazy val scala212 = " 2.12.11 "
14
- lazy val scala213 = " 2.13.3 "
13
+ lazy val scala212 = " 2.12.12 "
14
+ lazy val scala213 = " 2.13.4 "
15
15
lazy val supportedScalaVersions = List (scala212, scala213)
16
16
17
17
ThisBuild / scalaVersion := scala212
You can’t perform that action at this time.
0 commit comments