{"id":39035822,"url":"https://github.com/smithoss/goveralls","last_synced_at":"2026-01-17T17:44:02.652Z","repository":{"id":57496857,"uuid":"209855499","full_name":"smithoss/goveralls","owner":"smithoss","description":"maintained version of mattn/goveralls","archived":false,"fork":false,"pushed_at":"2019-09-20T20:47:27.000Z","size":142,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-06T09:47:14.279Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smithoss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-20T18:23:40.000Z","updated_at":"2022-08-30T06:57:31.000Z","dependencies_parsed_at":"2022-09-02T00:22:51.838Z","dependency_job_id":null,"html_url":"https://github.com/smithoss/goveralls","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/smithoss/goveralls","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smithoss%2Fgoveralls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smithoss%2Fgoveralls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smithoss%2Fgoveralls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smithoss%2Fgoveralls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smithoss","download_url":"https://codeload.github.com/smithoss/goveralls/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smithoss%2Fgoveralls/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28513973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-17T17:44:02.551Z","updated_at":"2026-01-17T17:44:02.616Z","avatar_url":"https://github.com/smithoss.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"goveralls\n=========\n\nAccreditation: This repository was cloned from https://github.com/mattn/goveralls.\nIt is not forked because we do not intend to submit upstream patches. The upstream\nsource is relatively inactive and we want to be able to provide a more rapid response.\n\nIt continues to be licensed under the MIT license.\n\n[Go](http://golang.org) integration for [Coveralls.io](http://coveralls.io)\ncontinuous code coverage tracking system.\n\n# Installation\n\n`goveralls` requires a working Go installation (Go-1.2 or higher).\n\n```bash\n$ go get github.com/smithoss/goveralls\n```\n\n\n# Usage\n\nFirst you will need an API token.  It is found at the bottom of your\nrepository's page when you are logged in to Coveralls.io.  Each repo has its\nown token.\n\n```bash\n$ cd $GOPATH/src/github.com/yourusername/yourpackage\n$ goveralls -repotoken your_repos_coveralls_token\n```\n\nYou can set the environment variable `$COVERALLS_TOKEN` to your token so you do\nnot have to specify it at each invocation.\n\n\nYou can also run this reporter for multiple passes with the flag `-parallel` or\nby setting the environment variable `COVERALLS_PARALLEL=true` (see [coveralls\ndocs](https://docs.coveralls.io/parallel-build-webhook) for more details.\n\n\n# Continuous Integration\n\nThere is no need to run `go test` separately, as `goveralls` runs the entire\ntest suite.\n\n## Travis CI\n\n### GitHub Integration\n\nEnable Travis-CI on your github repository settings.\n\nFor a **public** github repository put below's `.travis.yml`.\n\n```yml\nlanguage: go\nsudo: false\ngo:\n  - tip\nbefore_install:\n  - go get github.com/smithoss/goveralls\nscript:\n  - $GOPATH/bin/goveralls -service=travis-ci\n```\n\nFor a **public** github repository, it is not necessary to define your repository key (`COVERALLS_TOKEN`).\n\nFor a **private** github repository put below's `.travis.yml`. If you use **travis pro**, you need to specify `-service=travis-pro` instead of `-service=travis-ci`.\n\n```yml\nlanguage: go\nsudo: false\ngo:\n  - tip\nbefore_install:\n  - go get github.com/smithoss/goveralls\nscript:\n  - $GOPATH/bin/goveralls -service=travis-pro\n```\n\nStore your Coveralls API token in `Environment variables`.\n\n```\nCOVERALLS_TOKEN = your_token_goes_here\n```\n\nor you can store token using [travis encryption keys](https://docs.travis-ci.com/user/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.\n\n```\n$ gem install travis\n$ travis encrypt COVERALLS_TOKEN=your_token_goes_here --add env.global\n```\n\ntravis will add `env` block as following example:\n\n```yml\nenv:\n  global:\n    secure: xxxxxxxxxxxxx\n```\n\n### For others:\n\n```\n$ go get github.com/smithoss/goveralls\n$ go test -covermode=count -coverprofile=profile.cov\n$ goveralls -coverprofile=profile.cov -service=travis-ci\n```\n\n## Drone.io\n\nStore your Coveralls API token in `Environment Variables`:\n\n```\nCOVERALLS_TOKEN=your_token_goes_here\n```\n\nReplace the `go test` line in your `Commands` with these lines:\n\n```\n$ go get github.com/smithoss/goveralls\n$ goveralls -service drone.io\n```\n\n`goveralls` automatically use the environment variable `COVERALLS_TOKEN` as the\ndefault value for `-repotoken`.\n\nYou can use the `-v` flag to see verbose output from the test suite:\n\n```\n$ goveralls -v -service drone.io\n```\n\n## CircleCI\n\nStore your Coveralls API token as an [Environment Variable](https://circleci.com/docs/environment-variables).\n\nIn your `circle.yml` add the following commands under the `test` section.\n\n```yml\ntest:\n  pre:\n    - go get github.com/smithoss/goveralls\n  override:\n    - go test -v -cover -race -coverprofile=/home/ubuntu/coverage.out\n  post:\n    - /home/ubuntu/.go_workspace/bin/goveralls -coverprofile=/home/ubuntu/coverage.out -service=circle-ci -repotoken=$COVERALLS_TOKEN\n```\n\nFor more information, See https://coveralls.zendesk.com/hc/en-us/articles/201342809-Go\n\n## Semaphore\n\nStore your Coveralls API token in `Environment Variables`:\n\n```\nCOVERALLS_TOKEN=your_token_goes_here\n```\n\nMore instructions on how to do this can be found in the [Semaphore documentation](https://semaphoreci.com/docs/exporting-environment-variables.html).\n\nReplace the `go test` line in your `Commands` with these lines:\n\n```\n$ go get github.com/smithoss/goveralls\n$ goveralls -service semaphore\n```\n\n`goveralls` automatically use the environment variable `COVERALLS_TOKEN` as the\ndefault value for `-repotoken`.\n\nYou can use the `-v` flag to see verbose output from the test suite:\n\n```\n$ goveralls -v -service semaphore\n```\n\n## Coveralls Enterprise\n\nIf you are using Coveralls Enterprise and have a self-signed certificate, you need to skip certificate verification:\n\n```shell\n$ goveralls -insecure\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmithoss%2Fgoveralls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmithoss%2Fgoveralls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmithoss%2Fgoveralls/lists"}