Files
matchbox/.github/workflows/test.yaml
2021-03-19 16:46:32 -07:00

32 lines
535 B
YAML

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: go
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: ['1.14', '1.15', '1.16']
steps:
- name: setup
uses: actions/setup-go@v2
with:
go-version: ${{matrix.go}}
- name: checkout
uses: actions/checkout@v2
- name: tools
run: GO111MODULE=off go get golang.org/x/lint/golint
- name: test
run: make