diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_dep.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_grpc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 12 |
4 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b1ac828..2cf73784 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: '1.20' - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/release_dep.yml b/.github/workflows/release_dep.yml index 24f550be..4526988d 100644 --- a/.github/workflows/release_dep.yml +++ b/.github/workflows/release_dep.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: '1.20' - name: Download dependencies run: go mod download diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml index 1b002ea9..9211b279 100644 --- a/.github/workflows/release_grpc.yml +++ b/.github/workflows/release_grpc.yml @@ -46,7 +46,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: '1.20' - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2ca514b8..a788ef9a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,12 +40,12 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.19 + go-version: '1.19' - name: Run linter - uses: golangci/[email protected] + uses: golangci/[email protected] with: - version: v1.50 # without patch version + version: v1.51 # without patch version only-new-issues: false # show only new issues if it's a pull request args: --build-tags=safe --timeout=10m @@ -56,7 +56,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: '1.20' - name: Check out code uses: actions/checkout@v3 @@ -74,7 +74,7 @@ jobs: run: go mod download - name: Run Unit tests - run: go test -race -covermode=atomic -coverprofile /tmp/coverage.txt ./... + run: go test -v -race -covermode=atomic -coverprofile /tmp/coverage.txt ./... - name: Upload Coverage report to CodeCov continue-on-error: true @@ -94,7 +94,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.19 + go-version: '1.20' - name: Check out code uses: actions/checkout@v3 |