1
0
forked from MTSR/mapserver
mapserver/.github/workflows/go-test.yml
dependabot[bot] d3d52341fc Bump actions/setup-go from v1 to v2.1.3
Bumps [actions/setup-go](https://github.com/actions/setup-go) from v1 to v2.1.3.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](https://github.com/actions/setup-go/compare/v1...37335c7bb261b353407cff977110895fa0b4f7d8)

Signed-off-by: dependabot[bot] <support@github.com>
2020-10-02 20:21:02 +02:00

25 lines
350 B
YAML

name: go-test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v2.1.3
with:
go-version: '1.12'
- name: get
run: go get github.com/mjibson/esc
- name: generate
run: go generate
- name: test
run: go test ./...