Skip to content

chore(deps): bump github.com/go-playground/validator/v10 from 10.11.1 to 10.22.1 #71

chore(deps): bump github.com/go-playground/validator/v10 from 10.11.1 to 10.22.1

chore(deps): bump github.com/go-playground/validator/v10 from 10.11.1 to 10.22.1 #71

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
name: Lint & Test
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Run CI
run: make ci
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Build
run: make build
- name: Install
run: make install