Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

Remove codecov since it does not work right now #20

Merged
merged 1 commit into from
Jul 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,13 @@ jdk:
- openjdk11

install:
- rm -rf ~/.nvm && git clone https://github.com/nvm-sh/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && Ksource ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- pip install --user codecov
- rm -rf ~/.nvm &&
git clone https://github.com/nvm-sh/nvm.git ~/.nvm &&
(cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) &&
source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION

script:
- sbt ++$TRAVIS_SCALA_VERSION scalafmtSbtCheck scalafmtCheck test:scalafmtCheck clean current/doc core/doc coverage test
- if [[ "$TRAVIS_SCALA_VERSION" != 2.13.* ]]; # Primary support is 2.12.x
then
sbt ++$TRAVIS_SCALA_VERSION coverageReport coverageAggregate && codecov;
else echo "Skipping code coverage reporting on 2.13";
fi
- sbt ++$TRAVIS_SCALA_VERSION scalafmtSbtCheck scalafmtCheck test:scalafmtCheck clean current/doc core/doc test

before_cache:
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
Expand Down