Skip to content
This repository has been archived by the owner on Jul 28, 2020. It is now read-only.

Custom wercker step for uploading Go coverage to Coveralls.

License

Notifications You must be signed in to change notification settings

zhevron/wercker-step-goveralls

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wercker goveralls step

wercker status

This wercker step runs goveralls to extract code coverage from your project and uploads it to Coveralls.

Usage

box: google/golang
build:
  steps:
    - setup-go-workspace
    - golint
    - script:
        name: go build
        code: |
          go build ./...
    - script:
        name: go test
        code: |
          go test ./...
    - zhevron/goveralls:
        token: $COVERALLS_TOKEN

Properties

Name Type Default Description
token string Your Coveralls repository token.

Changelog

1.1.2

  • Pass GIT_BRANCH variable to goveralls

1.1.1

  • Added debug messages that show the git branch used, the go version used and each directory checked.

1.1.0

  • Resolve branch name if build is run as a detached head.

1.0.4

  • Reverted old cover tool check as the new one was far too slow

1.0.3

  • Simplified old cover tool check

1.0.2

  • Removed manual exits on script end

1.0.1

  • Debug release

1.0.0

  • Initial release

License

wercker-step-goveralls is licensed under the MIT license. See LICENSE.md for the full license.

About

Custom wercker step for uploading Go coverage to Coveralls.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages