Skip to content

Bump github.com/go-playground/validator/v10 from 10.19.0 to 10.20.0 (… #592

Bump github.com/go-playground/validator/v10 from 10.19.0 to 10.20.0 (…

Bump github.com/go-playground/validator/v10 from 10.19.0 to 10.20.0 (… #592

Workflow file for this run

name: "Go"
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
pull-requests: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Setup Go env
uses: actions/setup-go@v4
with:
go-version: "^1.22.0"
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Verify Go dependencies
run: go mod verify
- name: Run unit tests
run: go test -v ./...
- name: Goreleaser check
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: check
golangci:
runs-on: ubuntu-latest
steps:
- name: Setup Go env
uses: actions/setup-go@v4
with:
go-version: "^1.22.0"
cache: false
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
args: -v --timeout=5m
only-new-issues: false
install-mode: "binary"