• Stars
    star
    779
  • Rank 56,073 (Top 2 %)
  • Language
    Go
  • License
    MIT License
  • Created about 11 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

goveralls

Go integration for Coveralls.io continuous code coverage tracking system.

Installation

goveralls requires a working Go installation (Go-1.13 or higher).

$ go install github.com/mattn/goveralls@latest

Usage

First you will need an API token. It is found at the bottom of your repository's page when you are logged in to Coveralls.io. Each repo has its own token.

$ cd $GOPATH/src/github.com/yourusername/yourpackage
$ goveralls -repotoken your_repos_coveralls_token

You can set the environment variable $COVERALLS_TOKEN to your token so you do not have to specify it at each invocation.

You can also run this reporter for multiple passes with the flag -parallel or by setting the environment variable COVERALLS_PARALLEL=true (see coveralls docs for more details).

Continuous Integration

There is no need to run go test separately, as goveralls runs the entire test suite.

GitHub Actions

shogo82148/actions-goveralls is available on GitHub Marketplace. It provides the shorthand of the GitHub Actions YAML configure.

name: Quality
on: [push, pull_request]
jobs:
  test:
    name: Test with Coverage
    runs-on: ubuntu-latest
    steps:
    - name: Set up Go
      uses: actions/setup-go@v2
      with:
        go-version: '1.16'
    - name: Check out code
      uses: actions/checkout@v2
    - name: Install dependencies
      run: |
        go mod download
    - name: Run Unit tests
      run: |
        go test -race -covermode atomic -coverprofile=covprofile ./...
    - name: Install goveralls
      run: go install github.com/mattn/goveralls@latest
    - name: Send coverage
      env:
        COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      run: goveralls -coverprofile=covprofile -service=github
    # or use shogo82148/actions-goveralls
    # - name: Send coverage
    #   uses: shogo82148/actions-goveralls@v1
    #   with:
    #     path-to-profile: covprofile

Travis CI

GitHub Integration

Enable Travis-CI on your GitHub repository settings.

For a public GitHub repository put bellow's .travis.yml.

language: go
go:
  - tip
before_install:
  - go install github.com/mattn/goveralls@latest
script:
  - $GOPATH/bin/goveralls -service=travis-ci

For a public GitHub repository, it is not necessary to define your repository key (COVERALLS_TOKEN).

For a private GitHub repository put bellow's .travis.yml. If you use travis pro, you need to specify -service=travis-pro instead of -service=travis-ci.

language: go
go:
  - tip
before_install:
  - go install github.com/mattn/goveralls@latest
script:
  - $GOPATH/bin/goveralls -service=travis-pro

Store your Coveralls API token in Environment variables.

COVERALLS_TOKEN = your_token_goes_here

or you can store token using travis encryption keys. Note that this is the token provided in the page for that specific repository on Coveralls. This is not one that was created from the "Personal API Tokens" area under your Coveralls account settings.

$ gem install travis
$ travis encrypt COVERALLS_TOKEN=your_token_goes_here --add env.global

travis will add env block as following example:

env:
  global:
    secure: xxxxxxxxxxxxx

For others:

$ go install github.com/mattn/goveralls@latest
$ go test -covermode=count -coverprofile=profile.cov
$ goveralls -coverprofile=profile.cov -service=travis-ci

Drone.io

Store your Coveralls API token in Environment Variables:

COVERALLS_TOKEN=your_token_goes_here

Replace the go test line in your Commands with these lines:

$ go install github.com/mattn/goveralls@latest
$ goveralls -service drone.io

goveralls automatically use the environment variable COVERALLS_TOKEN as the default value for -repotoken.

You can use the -v flag to see verbose output from the test suite:

$ goveralls -v -service drone.io

CircleCI

Store your Coveralls API token as an Environment Variable.

In your circle.yml add the following commands under the test section.

test:
  pre:
    - go install github.com/mattn/goveralls@latest
  override:
    - go test -v -cover -race -coverprofile=/home/ubuntu/coverage.out
  post:
    - /home/ubuntu/.go_workspace/bin/goveralls -coverprofile=/home/ubuntu/coverage.out -service=circle-ci -repotoken=$COVERALLS_TOKEN

For more information, See https://docs.coveralls.io/go

Semaphore

Store your Coveralls API token in Environment Variables:

COVERALLS_TOKEN=your_token_goes_here

More instructions on how to do this can be found in the Semaphore documentation.

Replace the go test line in your Commands with these lines:

$ go install github.com/mattn/goveralls@latest
$ goveralls -service semaphore

goveralls automatically use the environment variable COVERALLS_TOKEN as the default value for -repotoken.

You can use the -v flag to see verbose output from the test suite:

$ goveralls -v -service semaphore

Jenkins CI

Add your Coveralls API token as a credential in Jenkins (see Jenkins documentation).

Then declare it as the environment variable COVERALLS_TOKEN:

pipeline {
    agent any
    stages {
        stage('Test with coverage') {
            steps {
                sh 'go test ./... -coverprofile=coverage.txt -covermode=atomic'
            }
        }
        stage('Upload to coveralls.io') {
            environment {
                COVERALLS_TOKEN     = credentials('coveralls-token')
            }
            steps {
                sh 'goveralls -coverprofile=coverage.txt'
            }
        }
    }
}

See also related Jenkins documentation.

It is also possible to let goveralls run the code coverage on its own without providing a coverage profile file.

TeamCity

Store your Coveralls API token in Environment Variables:

COVERALLS_TOKEN=your_token_goes_here

Setup build steps:

$ go install github.com/mattn/goveralls@latest
$ export PULL_REQUEST_NUMBER=%teamcity.build.branch%
$ goveralls -service teamcity -jobid %teamcity.build.id% -jobnumber %build.number%

goveralls will automatically use the environment variable COVERALLS_TOKEN as the default value for -repotoken.

You can use the -v flag to see verbose output.

Gitlab CI

Store your Coveralls API token as an Environment Variable named COVERALLS_TOKEN.

test:
  timeout: 30m
  stage: test
  artifacts:
    paths:
      - coverage.txt
  dependencies:
    - build:env
  when: always
  script:
    - go test -covermode atomic -coverprofile=coverage.txt ./...
    - go install github.com/mattn/goveralls@latest
    - goveralls -service=gitlab -coverprofile=coverage.txt

Coveralls Enterprise

If you are using Coveralls Enterprise and have a self-signed certificate, you need to skip certificate verification:

$ goveralls -insecure

Authors

  • Yasuhiro Matsumoto (a.k.a. mattn)
  • haya14busa

License

under the MIT License: http://mattn.mit-license.org/2016

More Repositories

1

go-sqlite3

sqlite3 driver for go using database/sql
C
7,250
star
2

emmet-vim

emmet for vim: http://emmet.io/
Vim Script
6,288
star
3

goreman

foreman clone written in go language
Go
2,330
star
4

go-gtk

Go binding for GTK
Go
2,077
star
5

vim-gist

Vim plugin for Gist
Vim Script
1,688
star
6

gom

Go Manager - bundle for go
Go
1,389
star
7

anko

Scriptable interpreter written in golang
Go
1,364
star
8

go-generics-example

Example code for Go generics
Go
1,324
star
9

vim-lsp-settings

Auto configurations for Language Server for vim-lsp
Vim Script
1,110
star
10

memo

πŸ““ Memo Life For You
Go
924
star
11

efm-langserver

General purpose Language Server
Go
880
star
12

go-isatty

Go
739
star
13

sudo

sudo for windows
Go
732
star
14

go-colorable

Go
713
star
15

webapi-vim

vim interface to Web API
Vim Script
680
star
16

longcat

Looooooooooooooooooooooooooooooooooooooooooooooong cat
Go
645
star
17

go-oci8

Oracle driver for Go using database/sql
Go
618
star
18

docx2md

Convert Microsoft Word Document to Markdown
Go
575
star
19

awesome-twitter-communities

Awesome Twitter Communities for Engineers
561
star
20

go-mastodon

mastodon client for golang
Go
553
star
21

go-runewidth

wcwidth for golang
Go
544
star
22

go-shellwords

Parse line as shell words
Go
491
star
23

vim-sonictemplate

Easy and high speed coding method
Vim Script
329
star
24

go-webkit

webkit widget for go-gtk
Go
291
star
25

twty

command-line twitter client written in golang
Go
280
star
26

gopher

Windows Desktop Mascot Applicaiton "Gopher"
Go
279
star
27

go-tflite

Go binding for TensorFlow Lite
Jupyter Notebook
270
star
28

go-v8

Go binding for v8
Go
264
star
29

calendar-vim

calendar vimscript
Vim Script
248
star
30

flappyvird-vim

Vim Script
234
star
31

growl-for-linux

Growl Implementation For Linux #growl4linux
C
207
star
32

go-zglob

Go
195
star
33

go-redmine

Go
186
star
34

ft

File Transferer
Go
185
star
35

go-tty

Go
184
star
36

goemon

五右葛門
Go
179
star
37

gof

Go
177
star
38

qq

Go
166
star
39

vim-maketable

Vim Script
150
star
40

vim-goimports

Vim plugin for Minimalist Gopher
Vim Script
149
star
41

go-pipeline

Go
147
star
42

etcdenv

Go
142
star
43

jvgrep

grep for japanese vimmer
Go
140
star
44

go-sixel

DRCS/Sixel Encoder/Decoder
Go
137
star
45

go-vue-example

Example App using Go, Vue.js, Element, Axios
Go
135
star
46

tailscale-systray

Linux port of tailscale system tray menu.
Go
134
star
47

go-adodb

Microsoft ActiveX Object DataBase driver for go that using exp/sql
Go
133
star
48

vim-particle

This plugin works on Windows
C
129
star
49

todo

A simple command-line todo list written in Go.
Go
129
star
50

jedie

Static site generator written in golang
Go
128
star
51

clask

Web micro-framework like flask in C++.
C++
124
star
52

golisp

Lisp Interpreter
Go
123
star
53

go-pointer

Go
118
star
54

godown

Convert HTML into Markdown
Go
113
star
55

go-gimei

Go
113
star
56

vim-trex

Running T-Rex with Vim
JavaScript
111
star
57

golang-wasm-example

Example app using Go's wasm support.
JavaScript
111
star
58

livestyle-vim

Emmet LiveStyle for Vim
Vim Script
110
star
59

go-pubsub

Go
107
star
60

go-scan

Go
103
star
61

go-slim

Slim Template Engine for golang
Go
103
star
62

vim-notification

Message notification system for Vim8
Vim Script
103
star
63

gowasmer

WebAssembly runtime for wasmer-go
Go
102
star
64

bsky

A cli application for bluesky social
Go
101
star
65

dotfiles

100
star
66

vim-starwars

Playing StarWars on Vim
Vim Script
97
star
67

vim-brain

Neural Networks written in Vim script
Vim Script
96
star
68

go-nulltype

Null friendly types
Go
96
star
69

go-jsonpointer

Go
95
star
70

files

Fast file find
Go
92
star
71

mkup

Portable Markdown Previewer
JavaScript
92
star
72

go-uv

Go binding for libuv
Go
92
star
73

dboxpaper

client for Dropbox Paper
Go
92
star
74

mruby-uv

interface to libuv for mruby(experimental)
C
91
star
75

davfs

Go
90
star
76

echo-scaffold

Echo scaffold is CLI to generate scaffolds for the echo framework.
Go
87
star
77

tinytinyhttpd

tiny tiny httpd
C++
87
star
78

vim-chatgpt

Vim Script
85
star
79

streeem

ごめんγͺさいごめんγͺさい
Go
85
star
80

go-mruby

go-mruby make interface to embed mruby into go.
Go
83
star
81

algia

A cli application for nostr
Go
80
star
82

http-server

C
76
star
83

go-ieproxy

Go
76
star
84

cho

Go
76
star
85

vim-sqlfmt

Vim Script
74
star
86

vim-molder

Vim Script
71
star
87

vim-treesitter

Go
70
star
88

vimtweak

VimTweak : The tweaking dll for GVim.exe.
C
69
star
89

gomate

Go
68
star
90

awesome-sonomasakada

68
star
91

ansicolor-w32.c

C
67
star
92

gh-ost

gh extension to meet ghost.
Shell
66
star
93

http-gonsole

Speak HTTP like a local. (the simple, intuitive HTTP console, golang version)
Go
65
star
94

vim-fz

Ultra Fast Fuzzy Finder for Vim8
Vim Script
65
star
95

vdbi-vim

Database client for Vim
Vim Script
64
star
96

chatgpt

Go
63
star
97

xgopher

Linux port of https://github.com/mattn/gopher
C
61
star
98

gntp-send

command line program that send to growl using GNTP protocol.
C
57
star
99

vim-usa_president_2016

Vim Script
55
star
100

go-uwsgi

uwsgi implement for go
Go
54
star