Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
percent

GitHub Action

actions-goveralls

v1.4.3

actions-goveralls

percent

actions-goveralls

Coveralls GitHub Action with Go integration powered by mattn/goveralls

Installation

Copy and paste the following snippet into your .yml file.

              

- name: actions-goveralls

uses: shogo82148/[email protected]

Learn more about this action in shogo82148/actions-goveralls

Choose a version

shogo82148/actions-goveralls

test Coverage Status

Coveralls GitHub Action with Go integration powered by mattn/goveralls.

SYNOPSIS

Basic Usage

Add the following step snippet to your workflows.

- uses: actions/checkout@v2
- uses: shogo82148/actions-goveralls@v1
  with:
    path-to-profile: profile.cov

Parallel Job Example

actions-goveralls supports Parallel Builds Webhook. Here is an example of matrix builds.

on: [push, pull_request]
jobs:

  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        go: ['1.11', '1.12', '1.13', '1.14', '1.15']

    steps:
      - uses: actions/setup-go@v1
        with:
          go-version: ${{ matrix.go }}
      - uses: actions/checkout@v2
      - run: go test -v -coverprofile=profile.cov ./...

      - name: Send coverage
        uses: shogo82148/actions-goveralls@v1
        with:
          path-to-profile: profile.cov
          flag-name: Go-${{ matrix.go }}
          parallel: true

  # notifies that all test jobs are finished.
  finish:
    needs: test
    runs-on: ubuntu-latest
    steps:
      - uses: shogo82148/actions-goveralls@v1
        with:
          parallel-finished: true

Use with Legacy GOPATH mode

If you want to use Go 1.10 or earlier, you have to set GOPATH environment value and the working directory. See https://github.com/golang/go/wiki/GOPATH for more detail.

Here is an example for testing example.com/owner/repo package.

- uses: actions/checkout@v2
  with:
    path: src/example.com/owner/repo # add this

# add this step
- name: Set up GOPATH
  shell: bash
  run: |
    echo "GOPATH=${{ github.workspace }}" >> "$GITHUB_ENV"
    echo "${{ github.workspace }}/bin" >> "$GITHUB_PATH"

- run: go test -v -coverprofile=profile.cov ./...
  working-directory: src/example.com/owner/repo # add this

- uses: shogo82148/actions-goveralls@v1
  with:
    path-to-profile: profile.cov
    working-directory: src/example.com/owner/repo # add this