Skip to content

Bump github.com/go-resty/resty/v2 from 2.13.1 to 2.15.3 #1044

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

Bump github.com/go-resty/resty/v2 from 2.13.1 to 2.15.3 #1044

Workflow file for this run

name: lint
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
jobs:
golangci:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.21.x]
name: golangci-lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
- name: gofmt
run: |
go fmt ./...
git diff --exit-code