Sha256: f065b1d316249e8a1a35089c10e42fcb6bd76e4b23da14b02d8331da8ca51573

Contents?: true

Size: 336 Bytes

Versions: 101

Compression:

Stored size: 336 Bytes

Contents

#!/bin/sh

set -e

if ! [ "$(git symbolic-ref --short HEAD)" = "master" ]; then
  printf "must be on master branch to run\n" >&2
  exit 1
fi

if ! git diff-index --quiet HEAD --; then
  printf "commit or stash your workspace changes\n" >&2
  exit 1
fi

if ! make test; then
  printf "test suite failed. not releasing\n" >&2
  exit 1
fi

Version data entries

101 entries across 101 versions & 2 rubygems

Version Path
codeclimate-0.85.12 bin/validate-release
codeclimate-0.85.11 bin/validate-release
codeclimate-0.85.10 bin/validate-release
codeclimate-0.85.9 bin/validate-release
codeclimate-0.85.8 bin/validate-release
codeclimate-0.85.7 bin/validate-release
codeclimate-0.85.6 bin/validate-release
codeclimate-0.85.5 bin/validate-release
codeclimate-0.85.4 bin/validate-release
codeclimate-0.85.3 bin/validate-release
codeclimate-0.85.2 bin/validate-release
codeclimate-0.85.1 bin/validate-release
codeclimate-0.85.0 bin/validate-release
codeclimate-0.84.0 bin/validate-release
codeclimate-0.83.0 bin/validate-release
codeclimate-0.82.0 bin/validate-release
codeclimate-0.81.0 bin/validate-release
codeclimate-0.80.0 bin/validate-release
codeclimate-0.79.0 bin/validate-release
codeclimate-0.78.1 bin/validate-release