From d314b771b8260b68c513c87927156d75e00b9156 Mon Sep 17 00:00:00 2001 From: Enrico Stahn Date: Tue, 3 Mar 2020 21:47:07 +1100 Subject: [PATCH] Update go.yml --- .github/workflows/go.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4a80987..6bf3da4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,14 +7,17 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.13 + - name: Set up Go 1.14 uses: actions/setup-go@v1 with: - go-version: 1.13 + go-version: 1.14 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - - name: golangci-lint - uses: actions-contrib/golangci-lint@v1 + - name: Install golangci-lint + run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.7 + + - name: Lint + run: golangci-lint run