b9d698c14d
Bumps [shogo82148/actions-goveralls](https://github.com/shogo82148/actions-goveralls) from 1.4.4 to 1.4.5. - [Release notes](https://github.com/shogo82148/actions-goveralls/releases) - [Commits](https://github.com/shogo82148/actions-goveralls/compare/v1.4.4...v1.4.5) Signed-off-by: dependabot[bot] <support@github.com>
21 lines
368 B
YAML
21 lines
368 B
YAML
name: go-test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-go@v2.1.3
|
|
with:
|
|
go-version: '1.16'
|
|
|
|
- name: test
|
|
run: go test ./... -coverprofile=profile.cov
|
|
|
|
- uses: shogo82148/actions-goveralls@v1.4.5
|
|
with:
|
|
path-to-profile: profile.cov |