From 01d88601c0293c12068c8631e2de34e58931e49d Mon Sep 17 00:00:00 2001 From: Jake Sanders Date: Mon, 24 Feb 2020 14:11:17 +0000 Subject: [PATCH] Split PR and merge tests (#1249) --- .github/workflows/pr.yml | 28 ++++++++++++++++++++++++++++ .github/workflows/tests.yml | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 00000000..6528e523 --- /dev/null +++ b/.github/workflows/pr.yml @@ -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 ./... diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index afe896e9..8b108ca8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,5 +1,5 @@ name: Run tests -on: [push, pull_request] +on: [push] jobs: