coverage.sh 148 B

123456789
  1. #!/usr/bin/env bash
  2. set -euo pipefail
  3. buidler coverage
  4. if [ -n "$CI" ]; then
  5. curl -s https://codecov.io/bash | bash -s -- -C "$CIRCLE_SHA1"
  6. fi