1
0
forked from MTSR/mapserver

21 lines
368 B
YAML
Raw Normal View History

2019-11-28 11:27:29 +01:00
name: go-test
2019-11-28 11:24:31 +01:00
2020-01-13 17:33:06 +01:00
on: [push, pull_request]
2019-11-28 11:24:31 +01:00
jobs:
build:
2020-12-14 09:44:17 +01:00
runs-on: ubuntu-20.04
2019-11-28 11:24:31 +01:00
steps:
2022-03-06 10:56:24 +00:00
- uses: actions/checkout@v3
2022-02-28 12:22:52 +00:00
- uses: actions/setup-go@v3.0.0
2019-11-28 11:24:31 +01:00
with:
go-version: '1.18'
2019-11-28 11:24:31 +01:00
- name: test
2021-04-12 13:32:33 +02:00
run: go test ./... -coverprofile=profile.cov
- uses: shogo82148/actions-goveralls@v1.6.0
2021-04-12 13:32:33 +02:00
with:
path-to-profile: profile.cov