From 2f98ace02e64bd17b5d24e79c60056f8f0def9a8 Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Thu, 24 Aug 2023 23:28:24 +0800 Subject: [PATCH] update ci config --- .github/workflows/go.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c01405bb..cd7a45fb 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,13 +23,13 @@ jobs: - uses: actions/setup-go@v3 with: # ci is set to go1.19 to match developer setups - go-version: 1.19.2 + go-version: "1.21" - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version - version: v1.50.0 + version: v1.54.2 working-directory: go test: @@ -39,7 +39,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: 1.19.2 + go-version: "1.21" - name: test working-directory: ./go run: make test @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: 1.19.2 + go-version: "1.21" - name: Run coverage working-directory: ./go run: go test -race -coverprofile=coverage.txt -covermode=atomic