1
0
forked from MTSR/mapserver
mapserver/.github/workflows/go-test.yml
dependabot[bot] ff16d3b9d7 Bump shogo82148/actions-goveralls from 1 to 1.4.4
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>
2021-05-12 15:56:16 +02:00

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