Skip to content

Bump github.com/avast/retry-go/v4 from 4.3.3 to 4.3.4 #28

Bump github.com/avast/retry-go/v4 from 4.3.3 to 4.3.4

Bump github.com/avast/retry-go/v4 from 4.3.3 to 4.3.4 #28

Workflow file for this run

name: golangci-lint
on: [push]
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.17
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go-version: [ '1.17', '1.18', '1.19' ]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
GOVERSION: ${{ matrix.go-version }}
steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
check-latest: true
cache: true
- name: Display Go version
run: go version
- name: Test
run: go test -v ./...