Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 1a6147f

Browse files
authored
Merge pull request #76 from reactor/Use_github_action
Use GitHub action
2 parents 341750f + d4cc1d6 commit 1a6147f

File tree

5 files changed

+30
-90
lines changed

5 files changed

+30
-90
lines changed

.circleci/config.yml

-42
This file was deleted.

.github/workflows/check_codecov.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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)

.github/workflows/scala.yml

+8
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,11 @@ jobs:
2121
java-version: ${{ matrix.java }}
2222
- name: Run tests
2323
run: sbt +test
24+
- name: Notify via telegram
25+
if: cancelled() == false
26+
uses: xinthink/[email protected]
27+
with:
28+
botToken: ${{ secrets.TELEGRAMBOTTOKEN }}
29+
chatId: ${{ secrets.TELEGRAMCHATID }}
30+
jobStatus: ${{ job.status }}
31+
skipSuccess: 'false'

.travis.yml

-46
This file was deleted.

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ val scalaTest = "org.scalatest" %% "scalatest" % "3.2.1" % "test"
1010
val reactorTest = "io.projectreactor" % "reactor-test" % reactorVersion % "test"
1111

1212
//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"
1515
lazy val supportedScalaVersions = List(scala212, scala213)
1616

1717
ThisBuild / scalaVersion := scala212

0 commit comments

Comments
 (0)