Skip to content

Bump github.com/go-playground/validator/v10 from 10.22.1 to 10.23.0 #1057

Bump github.com/go-playground/validator/v10 from 10.22.1 to 10.23.0

Bump github.com/go-playground/validator/v10 from 10.22.1 to 10.23.0 #1057

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