Test PRs action

This commit is contained in:
2019-09-12 18:48:51 -04:00
parent c02fbf0883
commit 809ba05107
+26
View File
@@ -0,0 +1,26 @@
name: Test PR
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Lint
uses: actions-contrib/golangci-lint@master
with:
args: run
- name: Setup Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v .