forked from Mirrors/bubbletea
29 lines
721 B
YAML
29 lines
721 B
YAML
|
name: coverage
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
coverage:
|
||
|
strategy:
|
||
|
matrix:
|
||
|
go-version: [^1]
|
||
|
os: [ubuntu-latest]
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
env:
|
||
|
GO111MODULE: "on"
|
||
|
steps:
|
||
|
- name: Install Go
|
||
|
uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: ${{ matrix.go-version }}
|
||
|
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Coverage
|
||
|
env:
|
||
|
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
run: |
|
||
|
go test -race -covermode atomic -coverprofile=profile.cov ./...
|
||
|
GO111MODULE=off go get github.com/mattn/goveralls
|
||
|
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
|