2020-08-24 09:51:44 -04:00
|
|
|
name: build
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-10-02 13:35:29 -04:00
|
|
|
go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x]
|
2020-10-13 22:45:55 -04:00
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2020-08-24 09:51:44 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
env:
|
|
|
|
GO111MODULE: "on"
|
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Download Go modules
|
|
|
|
run: go mod download
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: go build -v ./...
|