This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |