From edfc60b592fcd9496d4ec656dd577e8f49ebd773 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Thu, 7 May 2020 00:05:20 -0700 Subject: [PATCH] Remove buildtest.yml Signed-off-by: Chris Cummer --- .github/workflows/buildtest.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/buildtest.yml diff --git a/.github/workflows/buildtest.yml b/.github/workflows/buildtest.yml deleted file mode 100644 index c7086099..00000000 --- a/.github/workflows/buildtest.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Build Test -on: [push, pull_request] -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - name: Set up Go 1.14 - uses: actions/setup-go@v1 - with: - go-version: 1.13 - - - name: Check out source code - uses: actions/checkout@v1 - - - name: Build - env: - GOPROXY: "https://proxy.golang.org" - run: go build . - - - name: Test - env: - GOPROXY: "https://proxy.golang.org" - run: go test -v .