Add GitHub workflow

This commit is contained in:
Christian Muehlhaeuser 2020-01-25 07:17:37 +01:00
parent 1c98700015
commit ad60e6ad16
No known key found for this signature in database
GPG Key ID: 3CF9FA45CA1EBB7E
1 changed files with 26 additions and 0 deletions

26
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: build
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.11.x, 1.12.x, 1.13.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v1
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...