2019-12-06 11:22:07 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-05-09 09:42:39 +00:00
|
|
|
go: ['1.11', '1.12', '1.13', '1.14']
|
2019-12-06 11:22:07 +00:00
|
|
|
env:
|
|
|
|
VERBOSE: 1
|
|
|
|
GOFLAGS: -mod=readonly
|
|
|
|
GOPROXY: https://proxy.golang.org
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Set up Go
|
2020-05-09 09:42:39 +00:00
|
|
|
uses: actions/setup-go@v2
|
2019-12-06 11:22:07 +00:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
|
|
|
- name: Checkout code
|
2020-01-16 18:27:10 +00:00
|
|
|
uses: actions/checkout@v2
|
2019-12-06 11:22:07 +00:00
|
|
|
|
2020-05-09 09:42:39 +00:00
|
|
|
- name: Lint
|
2019-12-06 11:22:07 +00:00
|
|
|
run: make lint
|
2020-05-09 09:42:39 +00:00
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: make test
|