Skip to content

Instantly share code, notes, and snippets.

import cats.implicits._
import cats.effect.ExitCase.{Completed, Error}
import cats.effect.{ExitCode, IO, IOApp}
import cats.effect.concurrent.Ref
import eu.timepit.refined.api.{Refined, RefinedTypeOps}
import eu.timepit.refined.numeric.Interval
import eu.timepit.refined.W
import eu.timepit.refined.types.numeric.PosInt
import fs2.concurrent.Queue
### Keybase proof
I hereby claim:
* I am kwark on github.
* I am kwark (https://keybase.io/kwark) on keybase.
* I have a public key ASAS8Ks_Cas4iarn_XYlTgYuWCeWlYqfqrehrEV6sJSNFwo
To claim this, I am signing this object:
@kwark
kwark / .travis.yml
Last active September 6, 2017 14:07
setup sbt-release-early with travis-ci
language: scala
scala:
- 2.11.11
script:
- sbt ++$TRAVIS_SCALA_VERSION test
jdk:
- oraclejdk8
after_success:
- if [ $TRAVIS_PULL_REQUEST = 'false' ]; then sbt ++$TRAVIS_SCALA_VERSION releaseEarly;
fi