Skip to content

Commit

Permalink
Remove Travis CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
plokhotnyuk committed Apr 15, 2021
1 parent bd35119 commit f450fe9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 30 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,9 @@ jobs:
- name: Compile, test and check binary compatibility
run: "sbt -batch clean +test +mimaReportBinaryIssues"
shell: bash
- name: Test with coverage
if: ${{ matrix.os == 'ubuntu-latest' && matrix.java == 'zulu@1.8' }}
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: "sbt -batch ++2.11.12 coverage test coverageAggregate coveralls"
shell: bash
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Fast String Interpolator

[![Actions Build](https://github.com/plokhotnyuk/fast-string-interpolator/workflows/build/badge.svg)](https://github.com/plokhotnyuk/fast-string-interpolator/actions)
[![TravisCI Build](https://travis-ci.com/plokhotnyuk/fast-string-interpolator.svg?branch=master)](https://travis-ci.com/plokhotnyuk/fast-string-interpolator)
[![Coverage Status](https://coveralls.io/repos/github/plokhotnyuk/fast-string-interpolator/badge.svg?branch=master)](https://coveralls.io/github/plokhotnyuk/fast-string-interpolator?branch=master)
[![Scala Steward](https://img.shields.io/badge/Scala_Steward-helping-brightgreen.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
[![Maven Central](https://img.shields.io/badge/maven--central-0.6.1-blue.svg)](https://search.maven.org/search?q=com.github.plokhotnyuk.fsi)
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ lazy val `fsi-macros` = project
.settings(commonSettings)
.settings(publishSettings)
.settings(
crossScalaVersions := Seq("2.13.3", scalaVersion.value, "2.11.12"),
crossScalaVersions := Seq("2.13.5", scalaVersion.value, "2.11.12"),
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scalatest" %% "scalatest" % "3.2.7" % Test
Expand All @@ -98,7 +98,7 @@ lazy val `fsi-benchmark-core` = project
.settings(commonSettings)
.settings(noPublishSettings)
.settings(
crossScalaVersions := Seq("2.13.3", scalaVersion.value, "2.11.12"),
crossScalaVersions := Seq("2.13.5", scalaVersion.value, "2.11.12"),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.7" % Test
)
Expand Down

0 comments on commit f450fe9

Please sign in to comment.