1
0
forked from MTSR/mapserver
mapserver/.github/workflows/go-test.yml

18 lines
245 B
YAML
Raw Normal View History

2019-11-28 13:27:29 +03:00
name: go-test
2019-11-28 13:24:31 +03:00
2020-01-13 19:33:06 +03:00
on: [push, pull_request]
2019-11-28 13:24:31 +03:00
jobs:
build:
2020-12-14 11:44:17 +03:00
runs-on: ubuntu-20.04
2019-11-28 13:24:31 +03:00
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v2.1.3
2019-11-28 13:24:31 +03:00
with:
2021-04-12 12:57:29 +03:00
go-version: '1.16'
2019-11-28 13:24:31 +03:00
- name: test
run: go test ./...