forked from MTSR/mapserver
ff16d3b9d7
Bumps [shogo82148/actions-goveralls](https://github.com/shogo82148/actions-goveralls) from 1 to 1.4.4. - [Release notes](https://github.com/shogo82148/actions-goveralls/releases) - [Commits](https://github.com/shogo82148/actions-goveralls/compare/v1...v1.4.4) 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.4
|
|
with:
|
|
path-to-profile: profile.cov |