Split PR and merge tests (#1249)

This commit is contained in:
Jake Sanders 2020-02-24 14:11:17 +00:00 committed by GitHub
parent d467236f8f
commit 01d88601c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 1 deletions

28
.github/workflows/pr.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: PR Sanity Check
on: pull_request
jobs:
prtest:
name: Test repo
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
id: tests
env:
IN_TRAVIS_CI: yes
run: go test -v ./...

View File

@ -1,5 +1,5 @@
name: Run tests
on: [push, pull_request]
on: [push]
jobs: