spf13--viper/.github/workflows/ci.yml
Mark Sagi-Kazar 4525543ce4
Improve CI
2020-01-16 19:27:10 +01:00

35 lines
569 B
YAML

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.11', '1.12', '1.13']
env:
VERBOSE: 1
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: make test
- name: Run linter
run: make lint