Skip to content

Bump github.com/go-resty/resty/v2 from 2.15.3 to 2.16.1 #74

Bump github.com/go-resty/resty/v2 from 2.15.3 to 2.16.1

Bump github.com/go-resty/resty/v2 from 2.15.3 to 2.16.1 #74

Workflow file for this run

name: Go
on:
push:
branches: [master, master*]
pull_request:
branches: [master, master*]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setting up golang
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Vet
run: go vet ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
files: coverage.txt
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.22
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest