From 6b3e11a47c1e186834134411287c201f6e97705c Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Mon, 18 Jan 2021 23:28:33 -0500 Subject: [PATCH] Minor update --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c6d9a41..086aa219 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,16 +15,15 @@ jobs: timeout-minutes: 5 steps: - name: Set up Go 1.15 - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: go-version: 1.15 - id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Build binary to make sure it works run: go build -mod vendor - name: Test - run: sudo go test -mod vendor ./... -race -coverprofile=coverage.txt -covermode=atomic + run: go test -mod vendor ./... -race -coverprofile=coverage.txt -covermode=atomic - name: Codecov uses: codecov/codecov-action@v1.0.14 with: